Quantcast
Channel: iRedMail
Viewing all 48092 articles
Browse latest View live

Quotas personalized in dovecot

$
0
0

==== REQUIRED BASIC INFO OF YOUR IREDMAIL SERVER ====
- iRedMail version (check /etc/iredmail-release): 0.9.8
- Linux/BSD distribution name and version: Centos 7
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): LDAP AD Windows server 2016
- Web server (Apache or Nginx):Nginx
- Manage mail accounts with iRedAdmin-Pro? No
- [IMPORTANT] Related original log or error message is required if you're experiencing an issue.
====

It is known than user's quota can become established by default in Dovecot but general, I have configured it of the following way:


plugin {
    # Quota configuration.
    # Reference: http://wiki2.dovecot.org/Quota/Configuration
    quota = dict:user::proxy::quotadict
       
    # Set default quota rule if no quota returned from SQL/LDAP query.
    quota_rule = *:storage=200m
    quota_rule2 = *:messages=3000
    quota_rule3 = Trash:storage=+10%
    quota_rule4 = Junk:ignore


Now then, but I have users' group that has to utilize a different quota to this first configured, and I want to establish one to 5 specific users different. The question is, as quotas personalized to determined users can be configured in dovecot.

I use Integration Activate Directory with Windows Server 2016.


iredmail 0.9.8 cloud deployment / ssl certs deployed

$
0
0

==== REQUIRED BASIC INFO OF YOUR IREDMAIL SERVER ====
- iRedMail version (check /etc/iredmail-release): 0.9.8
- Linux/BSD distribution name and version: ubuntu 18.04 LTS
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): MySQL (MariaDB)
- Web server (Apache or Nginx): nginx
- Manage mail accounts with iRedAdmin-Pro? no
- [IMPORTANT] Related original log or error message is required if you're experiencing an issue.
====

in your cloud deployment model, why not deploy Letsencrypt certs rather than un-trusted, self-signed ones?

iredmail 0.9.8 cloud deployment / bad web config / redirects

$
0
0

==== REQUIRED BASIC INFO OF YOUR IREDMAIL SERVER ====
- iRedMail version (check /etc/iredmail-release): 0.9.8
- Linux/BSD distribution name and version: ubuntu 18.04 LTS
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): MySQL (MariaDB)
- Web server (Apache or Nginx): nginx
- Manage mail accounts with iRedAdmin-Pro? no
- [IMPORTANT] Related original log or error message is required if you're experiencing an issue.
====

when i try /iredmail/, it redirects to /static/blank.html.

????

iredmail 0.9.8 cloud deployment / bad setup / admin user account NG

$
0
0

==== REQUIRED BASIC INFO OF YOUR IREDMAIL SERVER ====
- iRedMail version (check /etc/iredmail-release): 0.9.8
- Linux/BSD distribution name and version: ubuntu 18.04 LTS
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): MySQL (MariaDB)
- Web server (Apache or Nginx): nginx
- Manage mail accounts with iRedAdmin-Pro? no
- [IMPORTANT] Related original log or error message is required if you're experiencing an issue.
====

i tried logging into the webmail client at / with the admin account in your tips file and login fails. this after a fresh cloud deployment.

???

i understand it's in beta so i'm not expecting perfection. thanks.

Re: How do I update Netdata?

Re: Everything works except connection from Mautic

$
0
0

OK, I cracked it smile  It was in fact simpler than I thought if I knew where to dig...

This was a DNS issue - iRedMail is in one VM and Mautic is in a separate VM.  Both VMs are on the same virtula LAN -  connected to the same vSwitch.  So, when Mautic was trying to connect to the SMTP server it was bumping it on the private IP address bypassing the firewall and because of that there was no TLS encryption enforced.

https://snag.gy/wVATtd.jpg

Editing host file on the application server and adding a reference to the public IP address of the mail server (as mapped on the firewall) allowed me to connect to iRedMail and set up the profile.

So, everything works.... except I have a new issue now.  I guess I will need to open a separate post for it.

Re: iRedMail-0.9.8

$
0
0

You need to tweak your SQL query to return the SQL columns/values you want. I'm not sure what i can help.

Re: SPAM Question

$
0
0
Luke6283 wrote:

smtpd_sender_restrictions = check_sender_access hash:/etc/postfix/sender_access check_sender_access hash:/etc/postfix/accepted_unauth_senders reject_unknown_sender_domain reject_non_fqdn_sender reject_unlisted_sender permit_mynetworks permit_sasl_authenticated check_sender_access pcre:/etc/postfix/sender_access.pcre

Default iRedMail setting is:

# Sender restrictions
smtpd_sender_restrictions =
    reject_unknown_sender_domain
    reject_non_fqdn_sender
    reject_unlisted_sender
    permit_mynetworks
    permit_sasl_authenticated
    check_sender_access pcre:/etc/postfix/sender_access.pcre

- You may need to turn on debug mode in iRedAPD, so that we can get more details about (new) spam email.


Re: Password change error

$
0
0
nhapinde wrote:

Could you point me how to do it?

It depends on the SQL VIEW created in "sogo" database ("sogo.users").
Check PostgreSQL document to see whether it supports updating VIEW, maybe new postgresql version supports it now.

Re: SoGo EAS Unable to Send mail on iOS

$
0
0

I'm afraid that we need a new smtp port for SOGo in this case, but with default iRedMail settings, it works fine.

*) Add new lines in /etc/postfix/master.cf:

127.0.0.1:2525    inet  n       -       n       -       -       smtpd
    -o syslog_name=postfix/plain-smtp-2525
    -o smtpd_sasl_auth_enable=yes
    -o smtpd_tls_security_level=may
    -o smtpd_client_restrictions=permit_sasl_authenticated,reject
    -o content_filter=smtp-amavis:[127.0.0.1]:10026

*) In /etc/sogo/sogo.conf, update "SOGoSMTPServer" setting:

    SOGoSMTPServer = 127.0.0.1:2525;

*) Restart both postfix and sogo services.

Re: Store SpamAssassin bayes in SQL - for Centos 7

Re: SMTP Error 451 4.3.0 Failed to Add Recipient x - Temp Lookup Failure

$
0
0
derickn wrote:

After following the guide I am able to authenticate into the email server with <ad_user1>@pangea.local however I cannot send an email as I am then prompted with a SMTP error (451): Failed to add recipeint "<ad_user2>@pangea.local" (4.3.0 <ad_user1>@pangea.local>: Temporary lookup failure).

What's the detailed log in Postfix log file (/var/log/maillog)?

Also, show us output of commands below:

cd /etc/postfix/
for i in $(ls ad_*.cf); do echo $i; postmap -q '<ad_user2>@pangea.local' ldap:./$i; done

Re: SOGo Integrator on iRedMail 0.9.8

Re: Quotas personalized in dovecot

Re: iredmail 0.9.8 cloud deployment / ssl certs deployed

$
0
0
fsantiago06111979 wrote:

in your cloud deployment model, why not deploy Letsencrypt certs rather than un-trusted, self-signed ones?

Because we don't know whether this is a testing mail domain and server hostname.


Re: iredmail 0.9.8 cloud deployment / bad web config / redirects

$
0
0
fsantiago06111979 wrote:

when i try /iredmail/, it redirects to /static/blank.html.

We don't have web url '/iredmail/' by default. What's this?

Re: iredmail 0.9.8 cloud deployment / bad setup / admin user account NG

$
0
0

- Is it Roundcube webmail?
- Any related log in Dovecot, Postfix, Roundcube log files?

Re: How do I update Netdata?

Re: iredmail 0.9.8 cloud deployment / bad web config / redirects

$
0
0

ha, sorry, i probably meant iredadmin and typed that instead. nvm. sorry. please close this.

Re: iredmail 0.9.8 cloud deployment / bad setup / admin user account NG

$
0
0

it was roundcube but i re-imaged the server and used your command line script instead. that has worked fine except for the 1024 dkim key you build by default. many email auth testers seem to prefer 2048 bit keys now.

Viewing all 48092 articles
Browse latest View live