in reply to MIME::Lite error => SMTP auth() command not supported on smtp.gmail.com
Is MIME::Base64 installed?
MIME::Lite->send('smtp'... uses Net::SMTP, which in its auth method does:
eval { require MIME::Base64; require Authen::SASL; } or $self->set_status(500, ["Need MIME::Base64 and Authen::SASL tod +o auth"]), return 0;
MIME::Lite code includes:
if ($smtp->supports('AUTH',500,["Command unknown: 'AUTH'"])) { $smtp->auth( $args{AuthUser}, $args{AuthPass} ) or die "SMTP auth() command failed: $!\n" . $smtp->message . "\n"; } else { die "SMTP auth() command not supported on $hostname\n"; }
It appears possible that the lack of MIME::Base64 could result in the error you're seeing.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: MIME::Lite error => SMTP auth() command not supported on smtp.gmail.com
by ted.byers (Monk) on Sep 14, 2011 at 17:41 UTC | |
by keszler (Priest) on Sep 14, 2011 at 18:07 UTC | |
by ted.byers (Monk) on Sep 14, 2011 at 19:36 UTC | |
by keszler (Priest) on Sep 14, 2011 at 23:27 UTC | |
by ted.byers (Monk) on Sep 15, 2011 at 00:26 UTC | |
by ted.byers (Monk) on Sep 15, 2011 at 02:12 UTC | |
|