I'm having a little problem with listhandler... (Drupal 4.6.5)
I can create a comment to a forum topic (node) and the listhandler module works correctly to send out the comment to my mailing list.
I can reply to the comment via email and mailhandler sticks it in the appropriate forum/thread.
What doesn't work:
Posting a new forum topic from Drupal (i.e. creating a new node of type forum) does not seem to get sent to the mailing list (no listhandler interaction).
Also, the new forum topic does not appear on the main forum page. However, it is accessible from the "New forum topics" block on the side. Adding a comment to this "hidden" forum topic also not seem to work.
Any ideas what could be broken? I looked at the seqquences and system table but didn't see anything obvious.
For a forum post (node, type forum) that is created within Drupal, I see this in the forum table:
mysql> select * from forum where nid='20910';
+-------+-----+
| nid | tid |
+-------+-----+
| 20910 | 0 |
+-------+-----+
1 row in set (0.00 sec)
My forum TID is 30. Posts from the mailing list have "tid: 30" in the Commands section and they do work (this is from the email list):
mysql> select * from forum where nid='20909';
+-------+-----+
| nid | tid |
+-------+-----+
| 20909 | 30 |
+-------+-----+
1 row in set (0.00 sec)
I noticed that the counts of unread messages for the forum does not seem to be accurate. This forum ahs a bulk import of ~30k phpBB posts in it. Perhaps something is not updated correctly?