├── .hgignore ├── AUTHORS ├── ChangeLog ├── LICENSE ├── README.md ├── SQL ├── iredadmin.mysql ├── iredadmin.pgsql └── snippets │ ├── newsletter_subunsub_confirms.mysql │ ├── newsletter_subunsub_confirms.pgsql │ └── settings.pgsql ├── controllers ├── __init__.py ├── decorators.py ├── ldap │ ├── __init__.py │ ├── admin.py │ ├── basic.py │ ├── domain.py │ ├── urls.py │ ├── user.py │ └── utils.py ├── panel │ ├── __init__.py │ ├── log.py │ └── urls.py ├── sql │ ├── __init__.py │ ├── admin.py │ ├── basic.py │ ├── domain.py │ ├── urls.py │ ├── user.py │ └── utils.py └── utils.py ├── docs ├── README.customization └── tests.md ├── i18n ├── babel.cfg ├── bg_BG │ └── LC_MESSAGES │ │ ├── iredadmin.mo │ │ └── iredadmin.po ├── cs_CZ │ └── LC_MESSAGES │ │ ├── iredadmin.mo │ │ └── iredadmin.po ├── da_DK │ └── LC_MESSAGES │ │ ├── iredadmin.mo │ │ └── iredadmin.po ├── de_DE │ └── LC_MESSAGES │ │ ├── iredadmin.mo │ │ └── iredadmin.po ├── en_US │ └── LC_MESSAGES │ │ ├── iredadmin.mo │ │ └── iredadmin.po ├── es_ES │ └── LC_MESSAGES │ │ ├── iredadmin.mo │ │ └── iredadmin.po ├── fi_FI │ └── LC_MESSAGES │ │ ├── iredadmin.mo │ │ └── iredadmin.po ├── fr_FR │ └── LC_MESSAGES │ │ ├── iredadmin.mo │ │ └── iredadmin.po ├── hu_HU │ └── LC_MESSAGES │ │ ├── iredadmin.mo │ │ └── iredadmin.po ├── iredadmin.po ├── it_IT │ └── LC_MESSAGES │ │ ├── iredadmin.mo │ │ └── iredadmin.po ├── ja_JP │ └── LC_MESSAGES │ │ ├── iredadmin.mo │ │ └── iredadmin.po ├── ko_KR │ └── LC_MESSAGES │ │ ├── iredadmin.mo │ │ └── iredadmin.po ├── lv_LV │ └── LC_MESSAGES │ │ ├── iredadmin.mo │ │ └── iredadmin.po ├── nl_NL │ └── LC_MESSAGES │ │ ├── iredadmin.mo │ │ └── iredadmin.po ├── pl_PL │ └── LC_MESSAGES │ │ ├── iredadmin.mo │ │ └── iredadmin.po ├── pt_BR │ └── LC_MESSAGES │ │ ├── iredadmin.mo │ │ └── iredadmin.po ├── ro_RO │ └── LC_MESSAGES │ │ ├── iredadmin.mo │ │ └── iredadmin.po ├── ru_RU │ └── LC_MESSAGES │ │ ├── iredadmin.mo │ │ └── iredadmin.po ├── sl_SI │ └── LC_MESSAGES │ │ ├── iredadmin.mo │ │ └── iredadmin.po ├── sr │ └── LC_MESSAGES │ │ ├── iredadmin.mo │ │ └── iredadmin.po ├── sv_SE │ └── LC_MESSAGES │ │ ├── iredadmin.mo │ │ └── iredadmin.po ├── translation.sh ├── zh_CN │ └── LC_MESSAGES │ │ ├── iredadmin.mo │ │ └── iredadmin.po └── zh_TW │ └── LC_MESSAGES │ ├── iredadmin.mo │ └── iredadmin.po ├── iredadmin.py ├── libs ├── __init__.py ├── default_settings.py ├── form_utils.py ├── hooks.py ├── iredbase.py ├── ireddate.py ├── iredpwd.py ├── iredutils.py ├── jinja_filters.py ├── l10n.py ├── ldaplib │ ├── __init__.py │ ├── admin.py │ ├── attrs.py │ ├── auth.py │ ├── core.py │ ├── decorators.py │ ├── domain.py │ ├── general.py │ ├── iredldif.py │ ├── ldaputils.py │ └── user.py ├── logger.py ├── mailparser.py ├── panel │ ├── __init__.py │ └── log.py ├── regxes.py ├── sqllib │ ├── __init__.py │ ├── admin.py │ ├── auth.py │ ├── decorators.py │ ├── domain.py │ ├── general.py │ ├── sqlutils.py │ ├── user.py │ └── utils.py └── sysinfo.py ├── rc_scripts ├── iredadmin.debian ├── iredadmin.freebsd ├── iredadmin.openbsd ├── iredadmin.rhel ├── systemd │ ├── debian.service │ ├── rhel7.service │ ├── rhel8.service │ └── rhel9.service └── uwsgi │ ├── debian.ini │ ├── freebsd.ini │ ├── openbsd.ini │ ├── rhel7.ini │ ├── rhel8.ini │ └── rhel9.ini ├── requirements.txt ├── settings.py.ldap.sample ├── settings.py.mysql.sample ├── settings.py.pgsql.sample ├── static ├── .htaccess ├── default │ ├── css │ │ ├── fancybox.css │ │ ├── reset.css │ │ ├── screen.css │ │ ├── spectre-icons.min.css │ │ └── spectre.min.css │ └── images │ │ ├── arrow_left_off.png │ │ ├── arrow_left_ovr.png │ │ ├── arrow_leftend_off.png │ │ ├── arrow_leftend_ovr.png │ │ ├── arrow_right_off.png │ │ ├── arrow_right_ovr.png │ │ ├── arrow_rightend_off.png │ │ ├── arrow_rightend_ovr.png │ │ ├── arrow_sm_black.gif │ │ ├── arrow_sm_grey.gif │ │ ├── ball_grey_16.png │ │ ├── ball_yellow_13.png │ │ ├── bck_black_10.png │ │ ├── bck_black_5.png │ │ ├── bck_black_70.png │ │ ├── bck_header.png │ │ ├── bck_main.png │ │ ├── bck_white_10.png │ │ ├── bck_white_50.png │ │ ├── bck_white_75.png │ │ ├── bck_white_90.png │ │ ├── but_slide.png │ │ ├── button_glas1_ovr.png │ │ ├── button_glas2.png │ │ ├── fancybox │ │ ├── blank.gif │ │ ├── fancybox-x.png │ │ ├── fancybox-y.png │ │ ├── fancybox.blank.gif │ │ └── fancybox.png │ │ ├── gear.png │ │ ├── graph_16.png │ │ ├── header.png │ │ ├── ico_close_off.png │ │ ├── ico_close_ovr.png │ │ ├── line.gif │ │ ├── login.jpg │ │ ├── login_header.png │ │ ├── members.png │ │ ├── page_active.gif │ │ ├── rule.gif │ │ ├── rule2.gif │ │ └── tablesorter │ │ ├── asc.gif │ │ ├── bg.gif │ │ └── desc.gif ├── favicon.ico ├── fontawesome │ ├── css │ │ └── fontawesome-all.min.css │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 ├── js │ ├── jquery-3.6.4.min.js │ ├── jquery.fancybox.js │ ├── jquery.idtabs.js │ ├── jquery.quickfilter.js │ ├── jquery.tooltip.js │ └── stupidtable.min.js └── logo.png ├── templates └── default │ ├── dashboard.html │ ├── error_csrf.html │ ├── error_without_login.html │ ├── layout.html │ ├── ldap │ ├── admin │ │ ├── create.html │ │ ├── list.html │ │ └── profile.html │ ├── domain │ │ ├── create.html │ │ ├── list.html │ │ └── profile.html │ ├── ldif.html │ └── user │ │ ├── create.html │ │ ├── list.html │ │ └── profile.html │ ├── login.html │ ├── macros │ ├── form_inputs.html │ ├── general.html │ ├── ldap.html │ └── msg_handlers.html │ ├── panel │ └── log.html │ └── sql │ ├── admin │ ├── create.html │ ├── list.html │ └── profile.html │ ├── domain │ ├── create.html │ ├── list.html │ └── profile.html │ └── user │ ├── create.html │ ├── list.html │ └── profile.html ├── tools ├── README.md ├── __init__.py ├── cleanup_amavisd_db.py ├── cleanup_db.py ├── delete_mailboxes.py ├── delete_sessions.py ├── dump_disclaimer.py ├── dump_quarantined_mails.py ├── ira_tool_lib.py ├── promote_user_to_global_admin.py ├── reset_user_password.py ├── update_mailbox_quota.py ├── update_password_in_csv.py └── upgrade_iredadmin.sh └── web ├── __init__.py ├── application.py ├── browser.py ├── contrib ├── __init__.py └── template.py ├── db.py ├── debugerror.py ├── form.py ├── http.py ├── httpserver.py ├── net.py ├── py3helpers.py ├── session.py ├── template.py ├── test.py ├── utils.py ├── webapi.py └── wsgi.py /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/.hgignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/AUTHORS -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/README.md -------------------------------------------------------------------------------- /SQL/iredadmin.mysql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/SQL/iredadmin.mysql -------------------------------------------------------------------------------- /SQL/iredadmin.pgsql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/SQL/iredadmin.pgsql -------------------------------------------------------------------------------- /SQL/snippets/newsletter_subunsub_confirms.mysql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/SQL/snippets/newsletter_subunsub_confirms.mysql -------------------------------------------------------------------------------- /SQL/snippets/newsletter_subunsub_confirms.pgsql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/SQL/snippets/newsletter_subunsub_confirms.pgsql -------------------------------------------------------------------------------- /SQL/snippets/settings.pgsql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/SQL/snippets/settings.pgsql -------------------------------------------------------------------------------- /controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /controllers/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/controllers/decorators.py -------------------------------------------------------------------------------- /controllers/ldap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /controllers/ldap/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/controllers/ldap/admin.py -------------------------------------------------------------------------------- /controllers/ldap/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/controllers/ldap/basic.py -------------------------------------------------------------------------------- /controllers/ldap/domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/controllers/ldap/domain.py -------------------------------------------------------------------------------- /controllers/ldap/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/controllers/ldap/urls.py -------------------------------------------------------------------------------- /controllers/ldap/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/controllers/ldap/user.py -------------------------------------------------------------------------------- /controllers/ldap/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/controllers/ldap/utils.py -------------------------------------------------------------------------------- /controllers/panel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /controllers/panel/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/controllers/panel/log.py -------------------------------------------------------------------------------- /controllers/panel/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/controllers/panel/urls.py -------------------------------------------------------------------------------- /controllers/sql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /controllers/sql/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/controllers/sql/admin.py -------------------------------------------------------------------------------- /controllers/sql/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/controllers/sql/basic.py -------------------------------------------------------------------------------- /controllers/sql/domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/controllers/sql/domain.py -------------------------------------------------------------------------------- /controllers/sql/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/controllers/sql/urls.py -------------------------------------------------------------------------------- /controllers/sql/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/controllers/sql/user.py -------------------------------------------------------------------------------- /controllers/sql/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/controllers/sql/utils.py -------------------------------------------------------------------------------- /controllers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/controllers/utils.py -------------------------------------------------------------------------------- /docs/README.customization: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/docs/README.customization -------------------------------------------------------------------------------- /docs/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/docs/tests.md -------------------------------------------------------------------------------- /i18n/babel.cfg: -------------------------------------------------------------------------------- 1 | [jinja2: templates/**.html] 2 | encoding = utf-8 3 | line_statement_prefix = % 4 | -------------------------------------------------------------------------------- /i18n/bg_BG/LC_MESSAGES/iredadmin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/bg_BG/LC_MESSAGES/iredadmin.mo -------------------------------------------------------------------------------- /i18n/bg_BG/LC_MESSAGES/iredadmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/bg_BG/LC_MESSAGES/iredadmin.po -------------------------------------------------------------------------------- /i18n/cs_CZ/LC_MESSAGES/iredadmin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/cs_CZ/LC_MESSAGES/iredadmin.mo -------------------------------------------------------------------------------- /i18n/cs_CZ/LC_MESSAGES/iredadmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/cs_CZ/LC_MESSAGES/iredadmin.po -------------------------------------------------------------------------------- /i18n/da_DK/LC_MESSAGES/iredadmin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/da_DK/LC_MESSAGES/iredadmin.mo -------------------------------------------------------------------------------- /i18n/da_DK/LC_MESSAGES/iredadmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/da_DK/LC_MESSAGES/iredadmin.po -------------------------------------------------------------------------------- /i18n/de_DE/LC_MESSAGES/iredadmin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/de_DE/LC_MESSAGES/iredadmin.mo -------------------------------------------------------------------------------- /i18n/de_DE/LC_MESSAGES/iredadmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/de_DE/LC_MESSAGES/iredadmin.po -------------------------------------------------------------------------------- /i18n/en_US/LC_MESSAGES/iredadmin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/en_US/LC_MESSAGES/iredadmin.mo -------------------------------------------------------------------------------- /i18n/en_US/LC_MESSAGES/iredadmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/en_US/LC_MESSAGES/iredadmin.po -------------------------------------------------------------------------------- /i18n/es_ES/LC_MESSAGES/iredadmin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/es_ES/LC_MESSAGES/iredadmin.mo -------------------------------------------------------------------------------- /i18n/es_ES/LC_MESSAGES/iredadmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/es_ES/LC_MESSAGES/iredadmin.po -------------------------------------------------------------------------------- /i18n/fi_FI/LC_MESSAGES/iredadmin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/fi_FI/LC_MESSAGES/iredadmin.mo -------------------------------------------------------------------------------- /i18n/fi_FI/LC_MESSAGES/iredadmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/fi_FI/LC_MESSAGES/iredadmin.po -------------------------------------------------------------------------------- /i18n/fr_FR/LC_MESSAGES/iredadmin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/fr_FR/LC_MESSAGES/iredadmin.mo -------------------------------------------------------------------------------- /i18n/fr_FR/LC_MESSAGES/iredadmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/fr_FR/LC_MESSAGES/iredadmin.po -------------------------------------------------------------------------------- /i18n/hu_HU/LC_MESSAGES/iredadmin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/hu_HU/LC_MESSAGES/iredadmin.mo -------------------------------------------------------------------------------- /i18n/hu_HU/LC_MESSAGES/iredadmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/hu_HU/LC_MESSAGES/iredadmin.po -------------------------------------------------------------------------------- /i18n/iredadmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/iredadmin.po -------------------------------------------------------------------------------- /i18n/it_IT/LC_MESSAGES/iredadmin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/it_IT/LC_MESSAGES/iredadmin.mo -------------------------------------------------------------------------------- /i18n/it_IT/LC_MESSAGES/iredadmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/it_IT/LC_MESSAGES/iredadmin.po -------------------------------------------------------------------------------- /i18n/ja_JP/LC_MESSAGES/iredadmin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/ja_JP/LC_MESSAGES/iredadmin.mo -------------------------------------------------------------------------------- /i18n/ja_JP/LC_MESSAGES/iredadmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/ja_JP/LC_MESSAGES/iredadmin.po -------------------------------------------------------------------------------- /i18n/ko_KR/LC_MESSAGES/iredadmin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/ko_KR/LC_MESSAGES/iredadmin.mo -------------------------------------------------------------------------------- /i18n/ko_KR/LC_MESSAGES/iredadmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/ko_KR/LC_MESSAGES/iredadmin.po -------------------------------------------------------------------------------- /i18n/lv_LV/LC_MESSAGES/iredadmin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/lv_LV/LC_MESSAGES/iredadmin.mo -------------------------------------------------------------------------------- /i18n/lv_LV/LC_MESSAGES/iredadmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/lv_LV/LC_MESSAGES/iredadmin.po -------------------------------------------------------------------------------- /i18n/nl_NL/LC_MESSAGES/iredadmin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/nl_NL/LC_MESSAGES/iredadmin.mo -------------------------------------------------------------------------------- /i18n/nl_NL/LC_MESSAGES/iredadmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/nl_NL/LC_MESSAGES/iredadmin.po -------------------------------------------------------------------------------- /i18n/pl_PL/LC_MESSAGES/iredadmin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/pl_PL/LC_MESSAGES/iredadmin.mo -------------------------------------------------------------------------------- /i18n/pl_PL/LC_MESSAGES/iredadmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/pl_PL/LC_MESSAGES/iredadmin.po -------------------------------------------------------------------------------- /i18n/pt_BR/LC_MESSAGES/iredadmin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/pt_BR/LC_MESSAGES/iredadmin.mo -------------------------------------------------------------------------------- /i18n/pt_BR/LC_MESSAGES/iredadmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/pt_BR/LC_MESSAGES/iredadmin.po -------------------------------------------------------------------------------- /i18n/ro_RO/LC_MESSAGES/iredadmin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/ro_RO/LC_MESSAGES/iredadmin.mo -------------------------------------------------------------------------------- /i18n/ro_RO/LC_MESSAGES/iredadmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/ro_RO/LC_MESSAGES/iredadmin.po -------------------------------------------------------------------------------- /i18n/ru_RU/LC_MESSAGES/iredadmin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/ru_RU/LC_MESSAGES/iredadmin.mo -------------------------------------------------------------------------------- /i18n/ru_RU/LC_MESSAGES/iredadmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/ru_RU/LC_MESSAGES/iredadmin.po -------------------------------------------------------------------------------- /i18n/sl_SI/LC_MESSAGES/iredadmin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/sl_SI/LC_MESSAGES/iredadmin.mo -------------------------------------------------------------------------------- /i18n/sl_SI/LC_MESSAGES/iredadmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/sl_SI/LC_MESSAGES/iredadmin.po -------------------------------------------------------------------------------- /i18n/sr/LC_MESSAGES/iredadmin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/sr/LC_MESSAGES/iredadmin.mo -------------------------------------------------------------------------------- /i18n/sr/LC_MESSAGES/iredadmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/sr/LC_MESSAGES/iredadmin.po -------------------------------------------------------------------------------- /i18n/sv_SE/LC_MESSAGES/iredadmin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/sv_SE/LC_MESSAGES/iredadmin.mo -------------------------------------------------------------------------------- /i18n/sv_SE/LC_MESSAGES/iredadmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/sv_SE/LC_MESSAGES/iredadmin.po -------------------------------------------------------------------------------- /i18n/translation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/translation.sh -------------------------------------------------------------------------------- /i18n/zh_CN/LC_MESSAGES/iredadmin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/zh_CN/LC_MESSAGES/iredadmin.mo -------------------------------------------------------------------------------- /i18n/zh_CN/LC_MESSAGES/iredadmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/zh_CN/LC_MESSAGES/iredadmin.po -------------------------------------------------------------------------------- /i18n/zh_TW/LC_MESSAGES/iredadmin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/zh_TW/LC_MESSAGES/iredadmin.mo -------------------------------------------------------------------------------- /i18n/zh_TW/LC_MESSAGES/iredadmin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/i18n/zh_TW/LC_MESSAGES/iredadmin.po -------------------------------------------------------------------------------- /iredadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/iredadmin.py -------------------------------------------------------------------------------- /libs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/__init__.py -------------------------------------------------------------------------------- /libs/default_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/default_settings.py -------------------------------------------------------------------------------- /libs/form_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/form_utils.py -------------------------------------------------------------------------------- /libs/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/hooks.py -------------------------------------------------------------------------------- /libs/iredbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/iredbase.py -------------------------------------------------------------------------------- /libs/ireddate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/ireddate.py -------------------------------------------------------------------------------- /libs/iredpwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/iredpwd.py -------------------------------------------------------------------------------- /libs/iredutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/iredutils.py -------------------------------------------------------------------------------- /libs/jinja_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/jinja_filters.py -------------------------------------------------------------------------------- /libs/l10n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/l10n.py -------------------------------------------------------------------------------- /libs/ldaplib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/ldaplib/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/ldaplib/admin.py -------------------------------------------------------------------------------- /libs/ldaplib/attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/ldaplib/attrs.py -------------------------------------------------------------------------------- /libs/ldaplib/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/ldaplib/auth.py -------------------------------------------------------------------------------- /libs/ldaplib/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/ldaplib/core.py -------------------------------------------------------------------------------- /libs/ldaplib/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/ldaplib/decorators.py -------------------------------------------------------------------------------- /libs/ldaplib/domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/ldaplib/domain.py -------------------------------------------------------------------------------- /libs/ldaplib/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/ldaplib/general.py -------------------------------------------------------------------------------- /libs/ldaplib/iredldif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/ldaplib/iredldif.py -------------------------------------------------------------------------------- /libs/ldaplib/ldaputils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/ldaplib/ldaputils.py -------------------------------------------------------------------------------- /libs/ldaplib/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/ldaplib/user.py -------------------------------------------------------------------------------- /libs/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/logger.py -------------------------------------------------------------------------------- /libs/mailparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/mailparser.py -------------------------------------------------------------------------------- /libs/panel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/panel/__init__.py -------------------------------------------------------------------------------- /libs/panel/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/panel/log.py -------------------------------------------------------------------------------- /libs/regxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/regxes.py -------------------------------------------------------------------------------- /libs/sqllib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/sqllib/__init__.py -------------------------------------------------------------------------------- /libs/sqllib/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/sqllib/admin.py -------------------------------------------------------------------------------- /libs/sqllib/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/sqllib/auth.py -------------------------------------------------------------------------------- /libs/sqllib/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/sqllib/decorators.py -------------------------------------------------------------------------------- /libs/sqllib/domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/sqllib/domain.py -------------------------------------------------------------------------------- /libs/sqllib/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/sqllib/general.py -------------------------------------------------------------------------------- /libs/sqllib/sqlutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/sqllib/sqlutils.py -------------------------------------------------------------------------------- /libs/sqllib/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/sqllib/user.py -------------------------------------------------------------------------------- /libs/sqllib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/sqllib/utils.py -------------------------------------------------------------------------------- /libs/sysinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/libs/sysinfo.py -------------------------------------------------------------------------------- /rc_scripts/iredadmin.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/rc_scripts/iredadmin.debian -------------------------------------------------------------------------------- /rc_scripts/iredadmin.freebsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/rc_scripts/iredadmin.freebsd -------------------------------------------------------------------------------- /rc_scripts/iredadmin.openbsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/rc_scripts/iredadmin.openbsd -------------------------------------------------------------------------------- /rc_scripts/iredadmin.rhel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/rc_scripts/iredadmin.rhel -------------------------------------------------------------------------------- /rc_scripts/systemd/debian.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/rc_scripts/systemd/debian.service -------------------------------------------------------------------------------- /rc_scripts/systemd/rhel7.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/rc_scripts/systemd/rhel7.service -------------------------------------------------------------------------------- /rc_scripts/systemd/rhel8.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/rc_scripts/systemd/rhel8.service -------------------------------------------------------------------------------- /rc_scripts/systemd/rhel9.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/rc_scripts/systemd/rhel9.service -------------------------------------------------------------------------------- /rc_scripts/uwsgi/debian.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/rc_scripts/uwsgi/debian.ini -------------------------------------------------------------------------------- /rc_scripts/uwsgi/freebsd.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/rc_scripts/uwsgi/freebsd.ini -------------------------------------------------------------------------------- /rc_scripts/uwsgi/openbsd.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/rc_scripts/uwsgi/openbsd.ini -------------------------------------------------------------------------------- /rc_scripts/uwsgi/rhel7.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/rc_scripts/uwsgi/rhel7.ini -------------------------------------------------------------------------------- /rc_scripts/uwsgi/rhel8.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/rc_scripts/uwsgi/rhel8.ini -------------------------------------------------------------------------------- /rc_scripts/uwsgi/rhel9.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/rc_scripts/uwsgi/rhel9.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/requirements.txt -------------------------------------------------------------------------------- /settings.py.ldap.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/settings.py.ldap.sample -------------------------------------------------------------------------------- /settings.py.mysql.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/settings.py.mysql.sample -------------------------------------------------------------------------------- /settings.py.pgsql.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/settings.py.pgsql.sample -------------------------------------------------------------------------------- /static/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/.htaccess -------------------------------------------------------------------------------- /static/default/css/fancybox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/css/fancybox.css -------------------------------------------------------------------------------- /static/default/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/css/reset.css -------------------------------------------------------------------------------- /static/default/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/css/screen.css -------------------------------------------------------------------------------- /static/default/css/spectre-icons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/css/spectre-icons.min.css -------------------------------------------------------------------------------- /static/default/css/spectre.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/css/spectre.min.css -------------------------------------------------------------------------------- /static/default/images/arrow_left_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/arrow_left_off.png -------------------------------------------------------------------------------- /static/default/images/arrow_left_ovr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/arrow_left_ovr.png -------------------------------------------------------------------------------- /static/default/images/arrow_leftend_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/arrow_leftend_off.png -------------------------------------------------------------------------------- /static/default/images/arrow_leftend_ovr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/arrow_leftend_ovr.png -------------------------------------------------------------------------------- /static/default/images/arrow_right_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/arrow_right_off.png -------------------------------------------------------------------------------- /static/default/images/arrow_right_ovr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/arrow_right_ovr.png -------------------------------------------------------------------------------- /static/default/images/arrow_rightend_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/arrow_rightend_off.png -------------------------------------------------------------------------------- /static/default/images/arrow_rightend_ovr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/arrow_rightend_ovr.png -------------------------------------------------------------------------------- /static/default/images/arrow_sm_black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/arrow_sm_black.gif -------------------------------------------------------------------------------- /static/default/images/arrow_sm_grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/arrow_sm_grey.gif -------------------------------------------------------------------------------- /static/default/images/ball_grey_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/ball_grey_16.png -------------------------------------------------------------------------------- /static/default/images/ball_yellow_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/ball_yellow_13.png -------------------------------------------------------------------------------- /static/default/images/bck_black_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/bck_black_10.png -------------------------------------------------------------------------------- /static/default/images/bck_black_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/bck_black_5.png -------------------------------------------------------------------------------- /static/default/images/bck_black_70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/bck_black_70.png -------------------------------------------------------------------------------- /static/default/images/bck_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/bck_header.png -------------------------------------------------------------------------------- /static/default/images/bck_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/bck_main.png -------------------------------------------------------------------------------- /static/default/images/bck_white_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/bck_white_10.png -------------------------------------------------------------------------------- /static/default/images/bck_white_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/bck_white_50.png -------------------------------------------------------------------------------- /static/default/images/bck_white_75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/bck_white_75.png -------------------------------------------------------------------------------- /static/default/images/bck_white_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/bck_white_90.png -------------------------------------------------------------------------------- /static/default/images/but_slide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/but_slide.png -------------------------------------------------------------------------------- /static/default/images/button_glas1_ovr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/button_glas1_ovr.png -------------------------------------------------------------------------------- /static/default/images/button_glas2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/button_glas2.png -------------------------------------------------------------------------------- /static/default/images/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/fancybox/blank.gif -------------------------------------------------------------------------------- /static/default/images/fancybox/fancybox-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/fancybox/fancybox-x.png -------------------------------------------------------------------------------- /static/default/images/fancybox/fancybox-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/fancybox/fancybox-y.png -------------------------------------------------------------------------------- /static/default/images/fancybox/fancybox.blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/fancybox/fancybox.blank.gif -------------------------------------------------------------------------------- /static/default/images/fancybox/fancybox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/fancybox/fancybox.png -------------------------------------------------------------------------------- /static/default/images/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/gear.png -------------------------------------------------------------------------------- /static/default/images/graph_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/graph_16.png -------------------------------------------------------------------------------- /static/default/images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/header.png -------------------------------------------------------------------------------- /static/default/images/ico_close_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/ico_close_off.png -------------------------------------------------------------------------------- /static/default/images/ico_close_ovr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/ico_close_ovr.png -------------------------------------------------------------------------------- /static/default/images/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/line.gif -------------------------------------------------------------------------------- /static/default/images/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/login.jpg -------------------------------------------------------------------------------- /static/default/images/login_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/login_header.png -------------------------------------------------------------------------------- /static/default/images/members.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/members.png -------------------------------------------------------------------------------- /static/default/images/page_active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/page_active.gif -------------------------------------------------------------------------------- /static/default/images/rule.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/rule.gif -------------------------------------------------------------------------------- /static/default/images/rule2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/rule2.gif -------------------------------------------------------------------------------- /static/default/images/tablesorter/asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/tablesorter/asc.gif -------------------------------------------------------------------------------- /static/default/images/tablesorter/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/tablesorter/bg.gif -------------------------------------------------------------------------------- /static/default/images/tablesorter/desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/default/images/tablesorter/desc.gif -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/fontawesome/css/fontawesome-all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/fontawesome/css/fontawesome-all.min.css -------------------------------------------------------------------------------- /static/fontawesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/fontawesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /static/fontawesome/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/fontawesome/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /static/fontawesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/fontawesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /static/fontawesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/fontawesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /static/fontawesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/fontawesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /static/fontawesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/fontawesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /static/fontawesome/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/fontawesome/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /static/fontawesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/fontawesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /static/fontawesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/fontawesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /static/fontawesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/fontawesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /static/fontawesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/fontawesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /static/fontawesome/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/fontawesome/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /static/fontawesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/fontawesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /static/fontawesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/fontawesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /static/fontawesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/fontawesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /static/js/jquery-3.6.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/js/jquery-3.6.4.min.js -------------------------------------------------------------------------------- /static/js/jquery.fancybox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/js/jquery.fancybox.js -------------------------------------------------------------------------------- /static/js/jquery.idtabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/js/jquery.idtabs.js -------------------------------------------------------------------------------- /static/js/jquery.quickfilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/js/jquery.quickfilter.js -------------------------------------------------------------------------------- /static/js/jquery.tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/js/jquery.tooltip.js -------------------------------------------------------------------------------- /static/js/stupidtable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/js/stupidtable.min.js -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/static/logo.png -------------------------------------------------------------------------------- /templates/default/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/dashboard.html -------------------------------------------------------------------------------- /templates/default/error_csrf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/error_csrf.html -------------------------------------------------------------------------------- /templates/default/error_without_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/error_without_login.html -------------------------------------------------------------------------------- /templates/default/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/layout.html -------------------------------------------------------------------------------- /templates/default/ldap/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/ldap/admin/create.html -------------------------------------------------------------------------------- /templates/default/ldap/admin/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/ldap/admin/list.html -------------------------------------------------------------------------------- /templates/default/ldap/admin/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/ldap/admin/profile.html -------------------------------------------------------------------------------- /templates/default/ldap/domain/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/ldap/domain/create.html -------------------------------------------------------------------------------- /templates/default/ldap/domain/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/ldap/domain/list.html -------------------------------------------------------------------------------- /templates/default/ldap/domain/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/ldap/domain/profile.html -------------------------------------------------------------------------------- /templates/default/ldap/ldif.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/ldap/ldif.html -------------------------------------------------------------------------------- /templates/default/ldap/user/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/ldap/user/create.html -------------------------------------------------------------------------------- /templates/default/ldap/user/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/ldap/user/list.html -------------------------------------------------------------------------------- /templates/default/ldap/user/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/ldap/user/profile.html -------------------------------------------------------------------------------- /templates/default/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/login.html -------------------------------------------------------------------------------- /templates/default/macros/form_inputs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/macros/form_inputs.html -------------------------------------------------------------------------------- /templates/default/macros/general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/macros/general.html -------------------------------------------------------------------------------- /templates/default/macros/ldap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/macros/ldap.html -------------------------------------------------------------------------------- /templates/default/macros/msg_handlers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/macros/msg_handlers.html -------------------------------------------------------------------------------- /templates/default/panel/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/panel/log.html -------------------------------------------------------------------------------- /templates/default/sql/admin/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/sql/admin/create.html -------------------------------------------------------------------------------- /templates/default/sql/admin/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/sql/admin/list.html -------------------------------------------------------------------------------- /templates/default/sql/admin/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/sql/admin/profile.html -------------------------------------------------------------------------------- /templates/default/sql/domain/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/sql/domain/create.html -------------------------------------------------------------------------------- /templates/default/sql/domain/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/sql/domain/list.html -------------------------------------------------------------------------------- /templates/default/sql/domain/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/sql/domain/profile.html -------------------------------------------------------------------------------- /templates/default/sql/user/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/sql/user/create.html -------------------------------------------------------------------------------- /templates/default/sql/user/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/sql/user/list.html -------------------------------------------------------------------------------- /templates/default/sql/user/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/templates/default/sql/user/profile.html -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/cleanup_amavisd_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/tools/cleanup_amavisd_db.py -------------------------------------------------------------------------------- /tools/cleanup_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/tools/cleanup_db.py -------------------------------------------------------------------------------- /tools/delete_mailboxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/tools/delete_mailboxes.py -------------------------------------------------------------------------------- /tools/delete_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/tools/delete_sessions.py -------------------------------------------------------------------------------- /tools/dump_disclaimer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/tools/dump_disclaimer.py -------------------------------------------------------------------------------- /tools/dump_quarantined_mails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/tools/dump_quarantined_mails.py -------------------------------------------------------------------------------- /tools/ira_tool_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/tools/ira_tool_lib.py -------------------------------------------------------------------------------- /tools/promote_user_to_global_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/tools/promote_user_to_global_admin.py -------------------------------------------------------------------------------- /tools/reset_user_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/tools/reset_user_password.py -------------------------------------------------------------------------------- /tools/update_mailbox_quota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/tools/update_mailbox_quota.py -------------------------------------------------------------------------------- /tools/update_password_in_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/tools/update_password_in_csv.py -------------------------------------------------------------------------------- /tools/upgrade_iredadmin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/tools/upgrade_iredadmin.sh -------------------------------------------------------------------------------- /web/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/web/__init__.py -------------------------------------------------------------------------------- /web/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/web/application.py -------------------------------------------------------------------------------- /web/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/web/browser.py -------------------------------------------------------------------------------- /web/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/contrib/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/web/contrib/template.py -------------------------------------------------------------------------------- /web/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/web/db.py -------------------------------------------------------------------------------- /web/debugerror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/web/debugerror.py -------------------------------------------------------------------------------- /web/form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/web/form.py -------------------------------------------------------------------------------- /web/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/web/http.py -------------------------------------------------------------------------------- /web/httpserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/web/httpserver.py -------------------------------------------------------------------------------- /web/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/web/net.py -------------------------------------------------------------------------------- /web/py3helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/web/py3helpers.py -------------------------------------------------------------------------------- /web/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/web/session.py -------------------------------------------------------------------------------- /web/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/web/template.py -------------------------------------------------------------------------------- /web/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/web/test.py -------------------------------------------------------------------------------- /web/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/web/utils.py -------------------------------------------------------------------------------- /web/webapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/web/webapi.py -------------------------------------------------------------------------------- /web/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iredmail/iRedAdmin/HEAD/web/wsgi.py --------------------------------------------------------------------------------