in reply to Secure SMTP/POP for gmail
I'm wondering if this would work. Warning: I couldn't get much farther away from "tested code" while still writing some code.
package Net::SMTP::SSL; use base 'Net::SMTP'; require IO::Socket::SSL; @Net::SMTP::ISA = map { s/(IO::Socket::)INET/${1}SSL/; } @Net::SMTP::ISA;
Just curious. ;-)
|
|---|