Page 1 of 1

[Mantis 2.10.0] Email Einrichtung SMTP

Posted: 01 Feb 2018, 10:28
by lahe3
Hallo zusammen,

ich möchte den phpMailer in Betrieb nehmen, bekomme aber den die Config nicht richtig zusammen.
Ich brauch brauch SMTP mit AUTH = NTLM

In der Readme des phpMailers steht


# PHPMailer Extras

## NTLM_SASL_client

This class by Manuel Lemos (bundled with permission) adds the ability to authenticate with Microsoft Windows mail servers that use NTLM-based authentication. It is used by PHPMailer if you send via SMTP and set the `AuthType`property to `NTLM`;
you will also need to use the `Realm` and `Workstation` properties. The original source is [here](http://www.phpclasses.org/browse/file/7495.html).



Basierend auf dieser Beschreibung habe ich folgende Config erstellt bzw. folgende Fragen:

Code: Select all

	# --- Email Configuration ---
	$g_phpMailer_method = PHPMAILER_METHOD_SMTP;
	$g_smtp_host = 'Mailserver-IP'; 		# Mailserver im LAN
	$g_smtp_username = 'username@domain.local';
	$g_smtp_password = 'userpassword';
	$g_smtp_auth_type = 'NTLM';
	$g_smtp_realm = '????'; 			# was muss hier eingetragen werden?
	$g_smtp_workstation = '?????'; 		# was muss hier eingetragen werden?
	$g_smtp_connection_mode = '';	
	$g_smtp_port = 25;
Gibt es die Variablenname für realm, workstation und authType überhaupt (noch)? Ich habe diese aus in den Tiefen des Internets..

Was muss ich da eintragen?

Greetz,
Lars

Re: [Mantis 2.10.0] Email Einrichtung SMTP

Posted: 02 Feb 2018, 11:48
by grisch111
Die gibt es glaube ich nicht mehr, zumindest sind sie nicht in der Doku. siehe Mantis Admin Guide S. 36 da steht das mit SMTP.

Re: [Mantis 2.10.0] Email Einrichtung SMTP

Posted: 02 Feb 2018, 14:32
by lahe3
Danke für die Antwort. Hab zwischenzeitlich im Code nachgeschaut und diese auch nicht gefunden.

Greetz,
Lars