Manipulating mailboxes

L

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 only. The other possiblity is IMAP4 but it is bad because my
program should not store passwords for all users. I can only see one
solution right now:

1. Make a copy of the mailbox
2. Truncate the mailbox
3. Process the messages in the copy and forward the e-mails by sending
out real e-mails.

But this looks so clumsy. Is there a way to delete/add messages to
mailboxes of different users, directly?

Thanks,

Laci 2.0
 
P

Paul Rubin

Laszlo Zsolt Nagy said:
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 their actual destinations.
 
M

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 you need is to place file ".forward" in users home directory, and write like this:
|/path/myscript.py

and chmod the script:
chmod 777 /path/myscript.py
 
L

Laszlo Zsolt Nagy

Maksim said:
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 you need is to place file ".forward" in users home directory, and write like this:
|/path/myscript.py
and chmod the script:
chmod 777 /path/myscript.py
Oh, fantastic. :) Then I can open stdin and read the e-mail message
from there.
Thank you so much

Laci 2.0
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,969
Messages
2,570,161
Members
46,708
Latest member
SherleneF1

Latest Threads

Top