Hi,
I'll rewrite a different question of mine, because the problem case somewhat changed:
If I want to get mails from my mailserver (different machine) into my Rails App to process it there, what is faster:
- Connecting via net/Pop or net/imap to download the mails
- Storing the Mails on the Mailserver in a MySQL Database (using something like DBMail) and then connecting directly to the MySQL Database
- Or is there a third option I'm not seeing yet? Maybe letting the mailserver itself post the Mail to the Rails App?
Thanks for your advice!