How configurate Email Reporting

This plugin allows you to report an issue in MantisBT by sending an email to a particular mail account

Moderators: Developer, Contributor

Post Reply
santiago
Posts: 1
Joined: 12 Jun 2017, 22:15

How configurate Email Reporting

Post by santiago »

Hi, i work in the 2.4.1 version of mantisbt, and, i install Email reporting plug in, and, i don´t know configurate the cron to recieve the mails in mantis...
Someone could help me?
Thanks.
atrol
Site Admin
Posts: 8366
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: How configurate Email Reporting

Post by atrol »

Moved topic to the right forum.
Please use Search before posting and read the Manual
SL-Gundam
Posts: 722
Joined: 06 Jul 2011, 14:17

Re: How configurate Email Reporting

Post by SL-Gundam »

That depends on the hosting party and the type of OS the webserver is running on but it comes roughly down to this
Linux or similar OS using Cron jobs:
Via webserver (see settings because this is disabled by default, see plugin config page in mantis)
*/5 * * * * lynx --dump http://mantis.homepage.com/plugin.php?p ... eport_mail
or via command line interface
*/5 * * * * /usr/local/bin/php /path/to/mantis/plugins/EmailReporting/scripts/bug_report_mail.php

This line fetches bug reports via POP3 or IMAP every 5 minutes.

Windows or similar OS:
Via command line interface
c:\php\php.exe c:\path\to\mantis\plugins\EmailReporting\scripts\bug_report_mail.php
Post Reply