[Mantis 2.10.0] Email Einrichtung SMTP

Deutschsprachiges Forum für Diskussionen und Fragen zu MantisBT

Moderators: Developer, Contributor

Post Reply
lahe3
Posts: 3
Joined: 31 Jan 2018, 16:41

[Mantis 2.10.0] Email Einrichtung SMTP

Post 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
grisch111
Posts: 61
Joined: 16 Jan 2017, 10:36

Re: [Mantis 2.10.0] Email Einrichtung SMTP

Post 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.
lahe3
Posts: 3
Joined: 31 Jan 2018, 16:41

Re: [Mantis 2.10.0] Email Einrichtung SMTP

Post by lahe3 »

Danke für die Antwort. Hab zwischenzeitlich im Code nachgeschaut und diese auch nicht gefunden.

Greetz,
Lars
Post Reply