forked from albertobraschi/mailr
-
Notifications
You must be signed in to change notification settings - Fork 2
emilioeduardob edited this page Mar 29, 2011
·
1 revision
Please update Mailr to the latest revision from the subversion repository. There is a new configuration option called "imap_auth". It is used to specify the authentication method used to connect to the IMAP server. The default value is "PLAIN" which works for Courier IMAP but I guess that some IMAP servers do not support "PLAIN" so in this case you can try to set "LOGIN" method. To do so you have to add the following line to your config/site.rb file:
:imap_auth => 'LOGIN'
Is there any way to cause mailr to just send a "login" command during the IMAP chat session, without sending an "authenticate" command?
It is possible to cause mailr to send a "login" command now. Could you please update to the latest revision and add the following line to your config/site.rb file:
:imap_auth => 'NOAUTH'
When I try to send an email I get an error complaining that the sender has no domain name. How do I configure mailr so that it appends "@mydomain" to my username when sending mail?
Add the following line to your config/site.rb file:
:send_from_domain => 'your_domain'