Hi,
I ahve a 1.1.0rc2 version and I have downloaded the zip files to install the feature.
I've followed all your discussion but I have always the current problem :
Just after the call function mail_process_all_mails I become :
error:mail
[pear_error: message="Generic login error" code=1 mode=return level=notice prefix="" info=""]
mail is my user with the option in config.inc.
Code: Select all
######################
# Mail Reporting
######################
# --- mail reporting settings -----
# This tells Mantis to report all the Mail with only one account
$g_mail_use_reporter = ON;
# The account's name for mail reporting
# Also used for fallback if a user is not found in database
$g_mail_reporter = 'mail';
# Signup new users automatically (possible security risk!)
# Default is OFF, ignored if mail_use_reporter is ON
$g_mail_auto_signup = OFF;
# How many mails should be fetched at the same time
# If big mails with attachments should be received, specify only one
$g_mail_fetch_max = 1;
# Write complete mail into the "Additional Information"
# NOTE - doesn't function because the variable doesn't exist in the function where it is used. So just leave OFF
$g_mail_additional = OFF;
# Write sender of the message into the bug report
$g_mail_save_from = OFF;
# Parse MIME mails (may require a lot of memory)
$g_mail_parse_mime = OFF;
# Parse HTML mails
$g_mail_parse_html = OFF;
# HTML Parser Command
# It should print the formatted text to STDOUT
# For example: "/usr/bin/w3m -T text/html -dump"
$g_mail_html_parser = OFF;
# directory for saving temporary mail content
$g_mail_tmp_directory = 'C:/wamp/www/mantis_dev/tmp';
# Delete incoming mail from POP3 server
$g_mail_delete = OFF;
# Signup new users automatically (possible security risk!)
# Default is OFF, ignored if mail_use_reporter is ON
$g_mail_debug = ON;
# Save mail contents to this directory if debug mode is ON
$g_mail_directory = 'C:/wamp/www/mantis_dev/tmp/mantis';
# The auth method used for POP3
# Valid methods are: 'DIGEST-MD5','CRAM-MD5','LOGIN','PLAIN','APOP','USER'
$g_mail_auth_method = '';
//$g_mail_auth_method = 'USER';
# Looks for priority header field
$g_mail_use_bug_priority = OFF;
# Default priority for mail reported bugs
$g_mail_bug_priority_default = NORMAL;
# Default bug category when reporting a new bug
$g_default_bug_category = 'log';
# Default bug category for mail reported bugs (Defaults to "default_bug_category")
# Because in Mantis 1.1.0a3 a category is required, we need a default category for issues reported by email.
# Make sure the category exists and it has been configured correctly
$g_mail_default_bug_category = 'log';
# Classify bug priorities
$g_mail_bug_priority = array(
'5 (lowest)' => 10,
'4 (low)' => 20,
'3 (normal)' => 30,
'2 (high)' => 40,
'1 (highest)' => 50,
'5' => 20,
'4' => 20,
'3' => 30,
'2' => 40,
'1' => 50,
'0' => 10,
'low' => 20,
'normal' => 30,
'high' => 40,
'' => 30,
'?' => 30
);
I have not undestood if I have to put the name of the Mantis user account in POP3_ACCOUNT or the login of the server POP3.
Can you please give me an answer.
thanks.