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

Re: White List of senders or domains


Re: Filter specific inbound mail by admin

Re: Adding account dificult on iPad

$
0
0
Thomas B wrote:

You were very helpfull, so I hope you will enjoy the cup of coffee I sent to you ...

Thank you. smile

Re: iRedmail on Raspberry Pi 3

$
0
0

Try this:

- install the latest stable iRedMail release
- Follow this tutorial and reduce the concurrently processed email to 1: https://docs.iredmail.org/concurrent.processing.html

I still double it can run smoothly because spamassassin + clamav is memory hungry.

If you really want to run it without enough memory, try this tutorial:
https://docs.iredmail.org/completely.di … assin.html

You can disable ClamAV first IF it's acceptable to you, and you have to judge whether received email is virus or not by your own mind.

Re: SMTP settings for Discourse

$
0
0

You must use full email address as smtp login username.

Re: Problem with users self-service password change

$
0
0
jobu wrote:

Any ideas - besides it is my own fault, still using apache?

Apache is fine. Which version of iRedAdmin-Pro are you running?

I will try to reproduce this issue locally and (hopefully) come back with a fix. Will contact you if i can not reproduce the issue, in this case, direct ssh access is required for troubleshooting.

Re: SMTP settings for Discourse

$
0
0
ZhangHuangbin wrote:

You must use full email address as smtp login username.

I am using:
Smtp server -  mail.in.example.com
User- postmaster@in.example.com
Password- email password
Port- 587
Authentication- true

I also tried smtp.example.com.....but nothing is working.

Re: SMTP settings for Discourse

$
0
0

- Are you sure the email address is "<someone>@in.example.com" but not "@example.com"? Which email domain did you add?
- Any related log in Postfix log file?
- Try to disable "fail2ban" service first then try again.


Re: My License marked as expired while expire year is 2099

$
0
0

Dear ZhangHuangbin,

Originally we had two servers (Primary and DR) although they were not accessible globally at the same time.
Now we are having many domains therefore we setup more than one Primary sites such as for IP 154.118.230.168 and 154.118.230.201.

If that's not possible to run multiple instances we would like to maintain the licence in core/original instance (154.118.230.168) and we will treat the other instances separately.

Regard,
Kambey



ZhangHuangbin wrote:

Dear Kambey,

Your license is running on multiple servers, this violates our license terms (one license can be ran on only one server at the same time).

Please contact us if there's some mistake on our side: https://www.iredmail.org/contact.html

Re: Problem with users self-service password change

$
0
0

It's iRedAdmin-Pro 3.1 (LDAP) ...

Thank you - like every time!

fresh installation need with apache

$
0
0

Dear members,

I would like to install iredmail with apache support . So iradmin , roundcude or any ther web service should be run under apache. I've searching around to add apche in installtion script because there is not option to select apache during installation.

I'm not much familiar with ngix so it will give hard time to understand , but for now I would like to go with apache.

Regards
Tehseen

Re: fresh installation need with apache

$
0
0

Dear Tehseen,

We have no plan to support Apache again, sorry.
Nginx should work out of box after iRedMail installation, since Nginx itself is a great web server, it might be worth to spend few minutes to learn it when you have some time.

Re: My License marked as expired while expire year is 2099

Re: fresh installation need with apache

$
0
0

ok great I successfully installed it with ngnix.

I start learning it as well. I've one question. \

Is there any stop / start / restart  bash script for ired . So I can just start all the services at once with out missing any.

Regards

Re: tld based greylisting time ?

$
0
0

Thank you for your reply and suggestion, I hadn't tried that one.
But if I understand it right, your approach it doesn't fulfil my wish for longer, extended and different greylisting times for these tlds ?


Re: autodiscover for activesync

$
0
0
radonm wrote:
bayardis wrote:

Hmm ok. Do you know if anyone has used z-push and sogo together? Sogo's documentation seems to imply I need to use ocsmanager but from what I see Iredadmin didn't use openxchange with sogo so I'm a little confused how the Activesync is working

I've managed to make Autodiscover work with z-push with the following configuration: Centos7, iRedMail-0.9.8, SOGo nightly build. Install and configure iRedMail first and setup SSL certificate with all hostnames necessary.

Get latest tarball release of z-push (I used 2.3.9) and put the files in the usual location /usr/share/z-push.Create log folder /var/log/z-push.

Configure z-push: in the main configuration file /usr/share/z-push/config.php set define('BACKEND_PROVIDER', 'BackendIMAP');

In autodiscover/config.php - define('ZPUSH_HOST', 'mailhost.yourdomain.com');

Create /etc/nginx/templates/autodiscover.tmpl with:
include         fastcgi_params;
fastcgi_index   index.php;
fastcgi_param   SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param   REQUEST_URI $1;
fastcgi_param   PHP_FLAG "magic_quotes_gpc=off \n register_globals=off \n magic_quotes_runtime=off \n short_open_tag=on";
fastcgi_param   PHP_VALUE "post_max_size=20M \n upload_max_filesize=20M \n max_execution_time=3660";
fastcgi_param   HTTP_PROXY ""; # Mitigate https://httpoxy.org/ vulnerabilities
fastcgi_read_timeout 3660; # Z-Push Ping might run 3600s, but to be safe


location ~* /AutoDiscover/AutoDiscover.xml {
    alias       /usr/share/z-push/autodiscover/autodiscover.php;

    access_log  /var/log/nginx/z-push-autodiscover-access.log;
    error_log   /var/log/nginx/z-push-autodiscover-error.log;

    fastcgi_pass    unix:/var/run/php-fpm.socket;

    fastcgi_index   autodiscover.php;
}

Edit /etc/nginx/sites-enabled/00-default-ssl.conf adding a line:
include /etc/nginx/templates/autodiscover.tmpl;

Edit /etc/nginx/templates/ssl.tmpl and change ssl_protocols to
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;

Don't forget the autodiscover DNS record and you should be all set.

Excellent, thank you for sharing!

Re: Problem with users self-service password change

$
0
0

BUG. Patch attached below:

diff -r f0fa685b6dc8 controllers/decorators.py
--- a/controllers/decorators.py Sun Dec 09 20:07:25 2018 +0800
+++ b/controllers/decorators.py Sat Dec 15 13:03:22 2018 +0800
@@ -95,9 +95,9 @@
 
 
 def require_user_login(func):
-    def proxyfunc(self, *args, **kw):
+    def proxyfunc(*args, **kw):
         if session.get('account_is_mail_user'):
-            return func(self, *args, **kw)
+            return func(*args, **kw)
         else:
             session.kill()
             raise web.seeother('/login?msg=LOGIN_REQUIRED')

Re: tld based greylisting time ?

$
0
0
itechpro wrote:

Thank you for your reply and suggestion, I hadn't tried that one.
But if I understand it right, your approach it doesn't fulfil my wish for longer, extended and different greylisting times for these tlds ?

It doesn't.

A better implementation might be: Add new column in sql table "iredapd.greylisting" to store per-account greylisting time. Defaults to 0 or NULL, if null, use the setting in settings.py.

Re: fresh installation need with apache

$
0
0
tehseensagarpk wrote:

Is there any stop / start / restart  bash script for ired . So I can just start all the services at once with out missing any.

There's no such script to start/stop ALL involved services.
But you can find all services in file iRedMail-0.9.8/iRedMail.tips (this file will be generated after iRedMail installation).

Question about upgrade iRedMail-Pro

$
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 64-Bit
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): MySQL
- Web server (Apache or Nginx): Nginx
- Manage mail accounts with iRedAdmin-Pro? Yes
- [IMPORTANT] Related original log or error message is required if you're experiencing an issue.
====

Hi,

I've fresh installed a new iRedmail Server by using 0.9.8 version and 2.8.0 iRedAdmin-Pro.
Then I migrate my mail data with database from my old server which is iRedmail 0.9.7 and iRedAdmin-Pro 2.8.0

May I know I should follow the upgrade guide to upgrade my iRedmail from 0.9.7 to 0.9.8 first, then upgrade the iRedAdmin-Pro to 2.9.0? Or I can just upgrade my iRedAdmin-Pro to 2.9.0?

Please advise.

Regards,
Matt

Viewing all 45918 articles
Browse latest View live




Latest Images