mailproblem: root@localhost

Deutschsprachiges Forum für Diskussionen und Fragen zu MantisBT

Moderators: Developer, Contributor

Post Reply
ursus
Posts: 6
Joined: 20 May 2011, 08:34

mailproblem: root@localhost

Post by ursus »

Hallo liebe Mantis-Community!


ich bräuchte etwas Hilfe bzw. Denkanstöße in Sachen Mailversandt mit Mantis. Wann immer Mails rausgehen (Erinnerung, Anlegen von Meldungen etc.) erscheint oben in de rSeite kurzzeitig folgendes "Feuerwerk":

Code: Select all

Invalid address: root@localhostBitte geben Sie mindestens eine Empfänger E-Mailadresse an. Invalid address: root@localhostBitte geben Sie mindestens eine Empfänger E-Mailadresse an. Invalid address: root@localhostBitte geben Sie mindestens eine Empfänger E-Mailadresse an. Invalid address: root@localhostBitte geben Sie mindestens eine Empfänger E-Mailadresse an. Invalid address: root@localhostBitte geben Sie mindestens eine Empfänger E-Mailadresse an. Invalid address: root@localhostBitte geben Sie mindestens eine Empfänger E-Mailadresse an. Invalid address: root@localhostBitte geben Sie mindestens eine Empfänger E-Mailadresse an. Invalid address: root@localhostBitte geben Sie mindestens eine Empfänger E-Mailadresse an. Invalid address: root@localhostBitte geben Sie mindestens eine Empfänger E-Mailadresse an. Invalid address: root@localhostBitte geben Sie mindestens eine Empfänger E-Mailadresse an. Invalid address: root@localhostBitte geben Sie mindestens eine Empfänger E-Mailadresse an. Invalid address: root@localhostBitte geben Sie mindestens eine Empfänger E-Mailadresse an. Invalid address: root@localhostBitte geben Sie mindestens eine Empfänger E-Mailadresse an. Invalid address: root@localhostBitte geben Sie mindestens eine Empfänger E-Mailadresse an. Invalid address: root@localhostBitte geben Sie mindestens eine Empfänger E-Mailadresse an. Invalid address: root@localhostBitte geben Sie mindestens eine Empfänger E-Mailadresse an. Invalid address: root@localhostBitte geben Sie mindestens eine Empfänger E-Mailadresse an. Invalid address: root@localhostBitte geben Sie mindestens eine Empfänger E-Mailadresse an. Invalid address: root@localhostBitte geben Sie mindestens eine Empfänger E-Mailadresse an. Invalid address: root@localhostBitte geben Sie mindestens eine Empfänger E-Mailadresse an. Invalid address: root@localhostBitte geben Sie mindestens eine Empfänger E-Mailadresse an.
Die Mails kommen jedoch an. Die Nutzer verunsichert das natürlich.


Auszug aus der config_inc.php (statt der "..." steht da natürlich ne gültige mailadresse):

Code: Select all

    $g_phpMailer_method         = '1';
    $g_validate_email           = 'ON';
   #$g_enable_email_notification = 'ON';
    # E-Mail addresses
    $g_administrator_email      = '...';
    $g_webmaster_email          = '...';
    $g_from_email               = '...';
    $g_return_path_email        = '...';
$g_allow_signup             = 'OFF';

Mantis ist Version 1.1.8 und derzeit nicht weiter upgradebar :/



bin für hinweise dankbar!
atrol
Site Admin
Posts: 8534
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: mailproblem: root@localhost

Post by atrol »

Existieren Einträge in der Datenbanktabelle mantis_email_table?
Please use Search before posting and read the Manual
ursus
Posts: 6
Joined: 20 May 2011, 08:34

Re: mailproblem: root@localhost

Post by ursus »

Code: Select all

| datasets |
+----------+
|       23 |
+----------+
1 row in set (0' at line 1

Code: Select all

mysql> select email from mantis_email_table;
+----------------+
| email          |
+----------------+
| root@localhost |
| root@localhost |
| root@localhost |
| root@localhost |
| root@localhost |
| root@localhost |
| root@localhost |
| root@localhost |
| root@localhost |
| root@localhost |
| root@localhost |
| root@localhost |
| root@localhost |
| root@localhost |
| root@localhost |
| root@localhost |
| root@localhost |
| root@localhost |
| root@localhost |
| root@localhost |
| root@localhost |
| root@localhost |
| root@localhost |
+----------------+
23 rows in set (0.00 sec)
Super danke!!!! Mich deucht, die Zaunpfahl war richtig. Kann ich da irgend eine gültige mail drüberpinseln?
atrol
Site Admin
Posts: 8534
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: mailproblem: root@localhost

Post by atrol »

Falls es sich um irgendwelche alten Fälle handelt, können die Datensätze einfach gelöscht werden
Falls nicht, eine gültige E-Mail Adresse updaten, was dazu führt, dass beim nächsten Versenden alle 23 Mails an diese Adresse gesendet werden.

Ich würde auf jeden Fall mal noch in der mantis_user_table nachschauen ob es irgendeinen User gibt, bei dem root@localhost als E-Mail Adresse eingetragen ist.
Please use Search before posting and read the Manual
ursus
Posts: 6
Joined: 20 May 2011, 08:34

Re: mailproblem: root@localhost

Post by ursus »

Danke, war tatsächlich des Rätsels Lösung!
Post Reply