Re: Manipulating mailboxes

2005-05-24 Thread Donn Cave
Quoth Laszlo Zsolt Nagy <[EMAIL PROTECTED]>: | I need to create a daemon that sits on a server and forwards some | e-mails. (Well not only that, it needs to change header information | before forwarding and also insert messages into a database). The mailbox | module is fine but I do not see a wa

Re: Manipulating mailboxes

2005-05-23 Thread Laszlo Zsolt Nagy
Maksim Kasimov wrote: >change header information, insert messages into a database, delete/add >messages, should not store passwords for all users, ... and any things else >you wish to do - if your OS is UNIX - just forward mail messages of some users >to your python script (you don't need to wr

Re: Manipulating mailboxes

2005-05-23 Thread Maksim Kasimov
change header information, insert messages into a database, delete/add messages, should not store passwords for all users, ... and any things else you wish to do - if your OS is UNIX - just forward mail messages of some users to your python script (you don't need to write a daemon for this) All

Re: Manipulating mailboxes

2005-05-23 Thread Paul Rubin
Laszlo Zsolt Nagy <[EMAIL PROTECTED]> writes: > But this looks so clumsy. Is there a way to delete/add messages to > mailboxes of different users, directly? Why not use procmail or equivalent to drop incoming messages into your daemon one at a time. Then use the smtp module to forward them to the

Manipulating mailboxes

2005-05-23 Thread Laszlo Zsolt Nagy
Hi All, I need to create a daemon that sits on a server and forwards some e-mails. (Well not only that, it needs to change header information before forwarding and also insert messages into a database). The mailbox module is fine but I do not see a way to delete/add messages - it is ready on