
Is this all I need to send e-mails out from otrs? Or do I need to configure sendmail? $Self->{'SendmailModule'} = 'Kernel::System::Email:SMTP'; $Self->{'SendmailModule::Host'} = 'my.ispssmtp.server'; $Self->{'SendmailModule::Port'} = '25'; $Self->{'SendmailModule::AuthUser'} = ''; $Self->{'SendmailModule::AuthPassword'} = ''; thanks marshall

On Tuesday, June 01, 2004 4:34 AM
Jesse
Is this all I need to send e-mails out from otrs?
This is one way, yes.
Or do I need to configure sendmail?
This were the other one, yes. SMTP is sufficient, though. hth, Robert Kehl -- ((otrs.de)) :: OTRS GmbH :: Norsk-Data-Str. 1 :: 61352 Bad Homburg http://www.otrs.de/ :: Tel. +49 (0)6172 4832388

Robert Kehl wrote:
On Tuesday, June 01, 2004 4:34 AM Jesse
wrote: Is this all I need to send e-mails out from otrs?
This is one way, yes.
Or do I need to configure sendmail?
This were the other one, yes. SMTP is sufficient, though.
hth,
Robert Kehl
-- ((otrs.de)) :: OTRS GmbH :: Norsk-Data-Str. 1 :: 61352 Bad Homburg http://www.otrs.de/ :: Tel. +49 (0)6172 4832388 _______________________________________________ OTRS mailing list: otrs - Webpage: http://otrs.org/ Archive: http://lists.otrs.org/pipermail/otrs To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/otrs Support oder Consulting für Ihr OTRS System? => http://www.otrs.de/
When I try it this way I get this message: Can't load sendmail backend module Kernel::System::Email:SMTP! syntax error at (eval 218) line 1, near "require Kernel::System::Email:" This looks to me as if it's trying to load sendmail, but with the entries I used that shouldn't be happening. what do you think?

On Tuesday, June 01, 2004 5:33 AM
Jesse
Can't load sendmail backend module Kernel::System::Email:SMTP! syntax error at (eval 218) line 1, near "require Kernel::System::Email:"
This looks to me as if it's trying to load sendmail, but with the entries I used that shouldn't be happening. what do you think?
There's a tiny little error in your settings: $Self->{'SendmailModule'} = 'Kernel::System::Email:SMTP'; The last ':' has to be doubled, too: $Self->{'SendmailModule'} = 'Kernel::System::Email::SMTP'; hth, Robert Kehl -- ((otrs.de)) :: OTRS GmbH :: Norsk-Data-Str. 1 :: 61352 Bad Homburg http://www.otrs.de/ :: Tel. +49 (0)6172 4832388
participants (2)
-
Jesse
-
Robert Kehl