Contribution to allow non-standard SMTP port

I posted this contribution to the dev-list last week, but didn't see a response. How can I convince somebody to merge this? Below is how to patch Kernel/System/Email/SMTP.pm 1.3 (as included in OTRS 1.1.1) to be able to use a non-standard port with the SMTP backend. You may then configure the port to use in Kernel/Config.pm like this: $Self->{'SendmailModule::Port'} = '2525'; Hopefully you will include this in the next release. Regards, Jeroen Boomgaardt 48a49
$Self->{SMTPPort} = $Self->{ConfigObject}->Get('SendmailModule::Port') || 'smtp(25)';
98c99 < if ($Self->{SMTPObject} = Net::SMTP->new($Self->{MailHost}, Timeout => $Self->{SMTPTimeout}, Debug => $Self->{SMTPDebug})) { ---
if ($Self->{SMTPObject} = Net::SMTP->new($Self->{MailHost}, Timeout => $Self->{SMTPTimeout}, Debug => $Self->{SMTPDebug}, Port => $Self->{SMTPPort})) {

Hi Jeroen, On Sun, Jun 29, 2003 at 06:22:18PM +0200, Jeroen Boomgaardt wrote:
I posted this contribution to the dev-list last week, but didn't see a response. How can I convince somebody to merge this? [...] Hopefully you will include this in the next release.
Upps.. I forgot to wrote this. I added it to the CVS. .-)
Jeroen Boomgaardt
-Martin -- Martin Edenhofer - <martin at edenhofer.de> - http://martin.edenhofer.de/ --
participants (2)
-
Jeroen Boomgaardt
-
Martin Edenhofer