email forwarding in blitz

Miscellaneous Forums/General Discussion/email forwarding in blitz

hi ;

my e-mail provider have no email forwarding .
my idea is a blitzprogram that read the mails and sends all to another mail-adress.

know anybody if this will work ? inclusive attachments ?
and how ??

i will make that because the other e-mail provider have a
really cool virusscanner .
mfg

Yes, Blitz supports TCP and POP3 is a TCP protocol. Attachments are simply separate sections of the message body separated by MIME codes; when forwarding, you don't need to decypher the body - you can just send the entire body, which will include attachments.

There might be some POP3 code in the archive. If not, here's the RFC on POP3:

http://www.google.com/search?q=pop3+rfc&btnI=I'm+Feeling+Lucky

Why not configure Outlook Express, Outlook, Thunderbird or any number of other real email programs to do it?

You could do this with a message rule in your email program, but if you wanted to do it in Blitz you can - there isn't much Blitz can't do on the networking front actually. There's some good stuff in the code archives covering email, i've been tempted to write my own email client for some time.