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
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
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
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
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