OTRS - Open Ticket Request System 2009-7-4
otrs.org | bugs.otrs.org | lists.otrs.org | faq.otrs.org | doc.otrs.org
Navigation:
print version

New!
OTRS 2.4 will be published in 18 days.
(Feature List)

announce at otrs.org:
OTRS announcements and important news.


Powered by:
OTRS.org is hosted by IP Exchange
OTRS.org is powered by Thomas-Krenn Server
 
E-Mails versenden/empfangen

Kapitel 7. E-Mails versenden/empfangen

7.1. E-Mails versenden

7.1.1. Via Sendmail (Standard)

OTRS ist in der Lage, E-Mails via Sendmail (z. B. Sendmail, Postfix, Qmail oder Exim) zu versenden. Die Standard-Konfiguration sollte gleich ohne Probleme funktionieren, verwendet wird das sendmail-Binary Ihres Betriebssystems.

Die Konfiguration kann über die grafische Administrationsoberfläche vorgenommen werden, oder die Datei Kernel/Config.pm wird um die entsprechenden Parameter erweitert:


    # SendmailModule
    # (Where is sendmail located and some options.
    # See 'man sendmail' for details.)
    $Self->{'SendmailModule'} = 'Kernel::System::Email::Sendmail';
    $Self->{'SendmailModule::CMD'} = '/usr/sbin/sendmail -t -i -f ';

7.1.2. Via SMTP relay/smarthost

Wenn kein sendmail-Binary zur Verfügung steht, kann OTRS E-Mails via SMTP versenden (Simple Mail Transfer Protocol / RFC 821). Diese Möglichkeit kann hauptsächlich auf Nicht-Unix-Plattformen (z. B. Win32) genutzt werden.

Die Konfiguration kann über die grafische Administrationsoberfläche vorgenommen werden, oder die Datei Kernel/Config.pm wird um die entsprechenden Parameter erweitert:


    # SendmailModule
    $Self->{"SendmailModule"} = "Kernel::System::Email::SMTP";
    $Self->{"SendmailModule::Host"} = "mail.example.com";
    $Self->{"SendmailModule::AuthUser"} = "";
    $Self->{"SendmailModule::AuthPassword"} = "";

 

RSS News Feed - Contact

Copyright © 2001-2009 OTRS Team, All Rights Reserved.