mantisbt:instantmantis_faq
Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| mantisbt:instantmantis_faq [2006/12/20 03:31] – created vboctor | mantisbt:instantmantis_faq [2011/11/16 07:29] (current) – The page rendering was broken (maybe since new PHP version on mantisbt.org). Added new line to fix it at end of file. atrol | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Instant Mantis FAQ ====== | ||
| + | |||
| + | ===== Sending Emails not working ===== | ||
| + | |||
| + | I receive the following error message, | ||
| + | |||
| + | < | ||
| + | PROBLEMS SENDING MAIL TO: someone@domain.com | ||
| + | Mailer Error: Could not instantiate mail function. | ||
| + | </ | ||
| + | |||
| + | Instant Mantis is unable to locate an SMTP server to send email. | ||
| + | |||
| + | <code php> | ||
| + | # select the method to mail by: | ||
| + | # 0 - mail() | ||
| + | # 1 - sendmail | ||
| + | # 2 - SMTP | ||
| + | $g_phpMailer_method = 2; | ||
| + | |||
| + | # This option allows you to use a remote SMTP host. Must use the phpMailer script | ||
| + | # Name of smtp host, needed for phpMailer, taken from php.ini | ||
| + | $g_smtp_host = ' | ||
| + | </ | ||
| + | |||
| + | Replace smtp.domain.com with the name of your SMTP host (same as your email program). | ||
| + | |||
| + | <code php> | ||
| + | # allow email notification | ||
| + | # note that if this is disabled, sign-up and password reset messages will | ||
| + | # not be sent. | ||
| + | $g_enable_email_notification = OFF; | ||
| + | </ | ||
| + | |||
| + | ===== Instant Mantis is out-of-date ===== | ||
| + | |||
| + | Instant Mantis is not kept up to date by it's author, however, we will write a separate article that will describe how to upgrade Instant Mantis to the latest version. | ||
