1

Topic: Cannot go to User Preference after upgrade

==== REQUIRED BASIC INFO OF YOUR IREDMAIL SERVER ====
- iRedMail version (check /etc/iredmail-release): 0.9.9
- Deployed with iRedMail Easy or the downloadable installer?
- Linux/BSD distribution name and version: CENTOS 6
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): MYSQL
- Web server (Apache or Nginx): Apache
- Manage mail accounts with iRedAdmin-Pro? YES
- [IMPORTANT] Related original log or error message is required if you're experiencing an issue.
====

Dear Support,

After i upgrade the iRedMail from 0.9.6 > 0.9.7 > 0.9.8 > 0.9.9 > iRedAdmin-Pro-SQL, when i click the Display Name for the user Preference, it show "Error:ConnectionError(ProtocolError('Connection aborted.', error(111, 'Connection refused')),) "  ans not success.

i already try do the same thing in testing server without this problem.

Please help. Thanks!

B.Rgds.
Roy Wong

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2

Re: Cannot go to User Preference after upgrade

Do you have mlmmjadmin running?

3

Re: Cannot go to User Preference after upgrade

After check, it seems cannot be start. below is the  settings.py :

############################################################
# DO NOT TOUCH THIS LINE.
from libs.default_settings import *
############################################################

# Listen address and port
listen_address = '127.0.0.1'
listen_port = 7790

# Run as a non-privileged user/group.
run_as_user = 'mlmmj'
run_as_group = 'mlmmj'

# Pid file
pid_file = '/var/run/mlmmjadmin/mlmmjadmin.pid'

# Log level: info, debug.
log_level = 'info'

# Specify the backend used to query/update meta data stored in SQL/LDAP.
#
# - `backend_api` is used when accessing RESTful API.
# - `backend_cli` is used when you're managing mailing list account with
#                 command line tool like `tools/maillist_admin.py`.
#
# Different backends may require different parameters in settings.py, please
# read the comment lines in `backends/bk_*.py`.
#
# Available backends:
#
#   - bk_iredmail_ldap: for iRedMail with LDAP backends (OpenLDAP, OpenBSD ldapd)
#   - bk_iredmail_sql: for iRedMail with SQL backends (MySQL, MariaDB, PostgreSQL)
#   - bk_none: pure mlmmj, no SQL/LDAP database.
#
# WARNING: For iRedMail users, if you don't have iRedAdmin-Pro, please enable
# proper backend below so that mlmmjadmin will store mailing list accounts in
# SQL/LDAP database.
backend_api = "bk_none"
backend_cli = "bk_iredmail_sql"

# A list of API AUTH tokens (secret strings) used for authentication.
# It's strong recommended to use a long string as auth token, program will log
# first 8 characters to help you identity the client.
api_auth_tokens = ['TOKEN']

# Load extra config file.
#from custom_settings import *

iredmail_sql_db_type = 'mysql'
iredmail_sql_db_server = '127.0.0.1'
iredmail_sql_db_port = 3306
iredmail_sql_db_name = 'vmail'
iredmail_sql_db_user = 'root'
iredmail_sql_db_password = 'password'

MLMMJ_SPOOL_DIR = '/home/vmail/mlmmj'
MLMMJ_ARCHIVE_DIR = '/home/vmail/mlmmj-archive'
MLMMJ_DEFAULT_PROFILE_SETTINGS.update({'smtp_port': 10027})

4

Re: Cannot go to User Preference after upgrade

Found out the problem, it's because the vmail folder access haven't change to 0755. Thanks for your help. smile