Mantis - git
Viewing Issue Advanced Details
3790 packaging minor sometimes 2009-07-30 16:21 2009-10-27 17:30
james  
bwalton  
normal  
closed  
fixed  
none    
none  
0003790: git-send-email with ssl needs Net::SMTP::SSL perl module
Please add Net::SMTP::SSL perl module and depend to support the option of SSL in git-send-email

This file:
/opt/csw/libexec/git-core/git-send-email

contains these lines:
        if ($smtp_encryption eq 'ssl') {
            $smtp_server_port ||= 465; # ssmtp
            require Net::SMTP::SSL;
            $smtp ||= Net::SMTP::SSL->new($smtp_server, Port =>
$smtp_server_port);
        }

but CSW does not have Net::SMTP::SSL perl module.
Issue History
2009-07-30 16:21 james New Issue
2009-07-30 21:57 bwalton Note Added: 0006492
2009-09-18 20:33 bwalton Note Added: 0006720
2009-09-18 20:33 bwalton Status new => resolved
2009-09-18 20:33 bwalton Resolution open => fixed
2009-09-18 20:33 bwalton Assigned To => bwalton
2009-10-27 17:30 bwalton Status resolved => closed

Notes
(0006492)
bwalton   
2009-07-30 21:57   
This is an optionally used module, but a user may trigger it. I'll build the required CPAN module (already in testing) and add a dependency for it.

-Ben
(0006720)
bwalton   
2009-09-18 20:33   
Resolved as of next official release.