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

Re: 0.9.9 Roundcube - 502 Bad Gateway - upstream prematurely closed

0
0

Hi

I found the settings you gave us above in www.conf file under /usr/local/etc/php-fpm.d/ directory tree. I applied new settings and started monitoring the server. Until now server running without a problem.

/usr/local/etc/php-fpm.d/www.conf


Re: Support for Exchange 2019

0
0
ZhangHuangbin wrote:
selea wrote:

/autodiscover/autodiscover.json?Email=username%40domain&Protocol=Autodiscoverv1&RedirectCount=1

Hmm, seems it requests a new URL. Old Outlook versions use "/autodiscover/autodiscover.xml".

Need some time to work it out.


Hi,
Yes it seems like it still uses it? But it is still getting 404 on /autodiscover/autodiscover.xml for some reason.

Anyway, looking forward to your solution!

Error: OperationalError(1054, "Unknown column 'disabled_mail_services

0
0

==== REQUIRED BASIC INFO OF YOUR IREDMAIL SERVER ====
- iRedMail version 0.9.9
- Deployed with downloadable installer?
- Linux/BSD distribution name and version:  Linux CentOS 7
- Store mail accounts in which backend  MYSQL
- Web server NGINX
- Manage mail accounts with iRedAdmin-Pro? YES
- [IMPORTANT] Related original log or error message is required if you're experiencing an issue.
====

After upgrade to iRedAdmin-PRO 3.1 (mysql)
when I add new domain I see:

Error: OperationalError(1054, "Unknown column 'disabled_mail_services' in 'field list'")

I think some sql missing in upgrade process sad

but which ones?

kind regards

Re: Error: OperationalError(1054, "Unknown column 'disabled_mail_services

Re: Error: OperationalError(1054, "Unknown column 'disabled_mail_services

Re: 0.9.9 Roundcube - 502 Bad Gateway - upstream prematurely closed

0
0

Damn the error was so small.

The issue really lies on this line:

listen.allowed_clients = 127.0.0.1, 192.168.8.36

IPs can't have space in between, just a coma.

listen.allowed_clients = 127.0.0.1,192.168.8.36

So I removed the space after the comma and it is worky worky now.

Thank you all for your help

How to turn off spam-filter and antivirus filtering

0
0

==== REQUIRED BASIC INFO OF YOUR IREDMAIL SERVER ====
- iRedMail version (check /etc/iredmail-release): 0.9.8
- Deployed with iRedMail Easy or the downloadable installer? installer
- Linux/BSD distribution name and version: Ubuntu 16.04
- 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.
====

I am using iredmail for an SMTP replay with mail sent to it from our own private server and then from there to the recipients. As we are now sending 25000 emails per campaign the server is very slow getting bogged down with Clam scanning and maybe spam scanning.

I tried stopping the Clam services with:
/etc/init.d/clamav-daemon stop
/etc/init.d/clamav-freshclam stop

And then I commented out the line in main.cf:
# content_filter = amavis:[127.0.0.1]:10024

But this morning the emails sent from the main server appeared to get "stuck" ion the iredmail server and never reached the recipients.
So I set things back again and hope the mail queue gets processed.

Is there a proper way to shut off AV and Spam scanning that will allow the SMTP email to be sent via the iredmail server quickly?

Thank you

Re: iRedMail-0.9.9 has been released.

0
0

Hi Zhang,

Good Day!
I can't login to webmail after I have followed this guide.
https://docs.iredmail.org/upgrade.iredm … 0.9.9.html

I think I have problem w/ this part <dovecot-read-mailbox-format-from-sql>

Here are logs from dovecot.

Jan 08 00:04:39 auth-worker(1552): Warning: mysql: Query failed, retrying: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB serve
r version for the right syntax to use near 'CONCAT(mailbox.mailboxformat, ':~/', mailbox.mailboxfolder, '/') AS mail, FROM m' at line 1

Looking forward for your reply.

Best Regards,


Re: Problems with configuration in nginx

0
0
ZhangHuangbin wrote:

Nginx configured by iRedMail loads files from some directories, you need to make sure your virtual web host config files are loaded by Nginx. Please start with /etc/nginx/nginx.conf, check the "include ..." directives.

Hi, thanks for your response.
This is my conf from /etc/nginx/nginx.conf

user www-data;
worker_processes 1;
pid /var/run/nginx.pid;

events {
    worker_connections 1024;
}

http {
    include /etc/nginx/conf-enabled/*.conf;
    include /etc/nginx/sites-enabled/*.conf;


In the 00-default.conf I have this:

server {
    # Listen on ipv4
    listen 80;

    # Listen on ipv6.
    # Note: this setting listens on both ipv4 and ipv6 with Nginx release
    #       shipped in some Linux/BSD distributions.
    #listen [::]:80;

    server_name _;

    # Redirect all insecure http:// requests to https://
    return 301 https://$host$request_uri;
}

In the 00-default-ssl.conf I have this:

server {
    listen 443;
    server_name _;

    root /var/www/html;
    index index.php index.html;

    include /etc/nginx/templates/misc.tmpl;
    include /etc/nginx/templates/ssl.tmpl;
    include /etc/nginx/templates/iredadmin.tmpl;
    include /etc/nginx/templates/roundcube.tmpl;
    include /etc/nginx/templates/sogo.tmpl;
    include /etc/nginx/templates/netdata.tmpl;
    include /etc/nginx/templates/php-catchall.tmpl;
    include /etc/nginx/templates/stub_status.tmpl;
}

Then I have other virtual ones that were working until I installed iredmail, since I install when I call any virutal the webmail of iredmail always speaks to me.
I do not see anything more than this.

Thanks for your answer

Re: Cannot receive email

0
0

Okay I managed to fix the first issue. Turn out that my hostname was reverted after a reboot. I now no longer get the error mentioned above.

I'm now at the following error:
mx dovecot: lda(postmaster@MYDOMAIN.COM): Error: userdb lookup: connect(/var/run/dovecot/auth-userdb) failed: Permission denied (euid=2000(vmail) egid=2000(vmail) UNIX perms appear ok (ACL/MAC wrong?), dir owned by 0:0 mode=0755)

EDIT:
I managed to fix the second issue as well.
In the file: /etc/apparmor.d/usr.lib.dovecot.dovecot-lda

I changed the line:
/usr/lib/dovecot/dovecot-lda flags=(complain) {

Into the line:
/usr/lib/dovecot/dovecot-lda flags=(complain,attach_disconnected) {

After that a restart of the apparmor service fixed the issue.

Re: mysql connection changed after reboot

0
0

Yes LXC change the hostname after the reboot.
I edited host part in SQL and it is all up and running now, thnx!

Run iRedMail on the same server as hosted websites?

0
0

Hi there

A general question as I cannot find the answer anywhere... I have a server with multiple vhosts. Can iRedMail be installed on the same server or does it have to be on it's own server?

Cheers

Ubuntu 16.04

Re: "not found" error when clicking link to request license upgrade

0
0

Hi,

I am also having the same problem... thanks in advance smile

Re: Reviving Email Problem in Replication

0
0
ZhangHuangbin wrote:

Try to read the log lines one by one by yourself. smile

thanks as you mentioned my glusterfs has problem ..!!!

do you know any tools that i use for syncing /var/vmail/ in my 2 servers ?

Re: Reviving Email Problem in Replication

0
0

Why not to use Dovecot Replication? I'm still on beginning of mail server management, but what are you doing seems like overly complicated workaround for task which has actual tools available.


Re: DKIM Selector

0
0

I would like to have two servers in sync and I believe that having two selectors is cleaner than sharing the same Key.

Re: iRedAdmin-Pro-LDAP-3.3 has been released

0
0

Zhang,
  I  found a big Bug in iredadmin 3.3! Deleting a user does not remove it from mailist
my environment:

- iRedMail version (check /etc/iredmail-release): 0.9.9 (new iredmail version)
- Linux/BSD distribution name and version: centos 7
- Store mail accounts in which backend (LDAP/MySQL/PGSQL):LDAP
- Web server (Apache or Nginx):Nginx
- Manage mail accounts with iRedAdmin-Pro? Yes version 3.3

Please have a simple test to verify it. I test it out on a clean installation.

Thanks
Napoleon

A log of junk mail send into mail server, how to block it.

0
0

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


Our user will forward email to google for backup purpose. Recently, our mail server received a lot of SPAM, so the SPAM is forward to google. After that, out mail server is block by google now.

HOW to block the SPAM ON amavisd or postfix or iredmail?
the SPAM domain name is XXX.icu, XXX.ic XXX.ru,  but i worry the mis-blocking if force block the XXX.icu  XXX.ic  XXX.ru on postfix [ check_sender_access pcre:/etc/postfix/reject_domains ]




[root@svr log]# mailq
-Queue ID- --Size-- ----Arrival Time---- -Sender/Recipient-------
29E9C5C00CA     5993 Tue Jan  8 16:48:12  nitid@preynne.icu
(host alt1.gmail-smtp-in.l.google.com[64.233.168.26] said: 421-4.7.0 [202.181.178.189      15] Our system has detected that this message is 421-4.7.0 suspicious due to the very low reputation of the sending domain. To 421-4.7.0 best protect our users from spam, the message has been blocked. 421-4.7.0 Please visit 421 4.7.0  https://support.google.com/mail/answer/188131 for more information. p81si14516247oia.75 - gsmtp (in reply to end of DATA command))
                                         user@gmail.com

B245B5C00C9     5163 Tue Jan  8 16:47:17  nitid@preynne.icu
(host alt1.gmail-smtp-in.l.google.com[64.233.168.26] said: 421-4.7.0 [202.181.178.189      15] Our system has detected that this message is 421-4.7.0 suspicious due to the very low reputation of the sending domain. To 421-4.7.0 best protect our users from spam, the message has been blocked. 421-4.7.0 Please visit 421 4.7.0  https://support.google.com/mail/answer/188131 for more information. p10si548788otl.267 - gsmtp (in reply to end of DATA command))
                                         user@gmail.com

C83D55C00C6     5992 Tue Jan  8 16:45:11  vinie@preynne.icu
(host alt1.gmail-smtp-in.l.google.com[64.233.168.27] said: 421-4.7.0 [202.181.178.189      15] Our system has detected that this message is 421-4.7.0 suspicious due to the very low reputation of the sending domain. To 421-4.7.0 best protect our users from spam, the message has been blocked. 421-4.7.0 Please visit 421 4.7.0  https://support.google.com/mail/answer/188131 for more information. l13si30398808otf.147 - gsmtp (in reply to end of DATA command))
                                         user@gmail.com

877495C00C7     8874 Tue Jan  8 17:42:58  pulse@homylie.icu
(host alt1.gmail-smtp-in.l.google.com[64.233.169.27] said: 421-4.7.0 [202.181.178.189      15] Our system has detected an unusual rate of 421-4.7.0 unsolicited mail originating from your IP address. To protect our 421-4.7.0 users from spam, mail sent from your IP address has been temporarily 421-4.7.0 rate limited. Please visit 421-4.7.0  https://support.google.com/mail/?p=Unso … LimitError to 421 4.7.0 review our Bulk Email Senders Guidelines. y203si22939945oiy.164 - gsmtp (in reply to end of DATA command))
                                         user@gmail.com

D0EA55C00C4     8641 Tue Jan  8 17:39:41  yquem@homylie.icu
(host alt1.gmail-smtp-in.l.google.com[64.233.169.26] said: 421-4.7.0 [202.181.178.189      15] Our system has detected an unusual rate of 421-4.7.0 unsolicited mail originating from your IP address. To protect our 421-4.7.0 users from spam, mail sent from your IP address has been temporarily 421-4.7.0 rate limited. Please visit 421-4.7.0  https://support.google.com/mail/?p=Unso … LimitError to 421 4.7.0 review our Bulk Email Senders Guidelines. t202si24843192oih.223 - gsmtp (in reply to end of DATA command))
                                         user@gmail.com

1E9EA5C00CC     7620 Tue Jan  8 17:41:39  yquem@homylie.icu
(host alt1.gmail-smtp-in.l.google.com[64.233.169.26] said: 421-4.7.0 [202.181.178.189      15] Our system has detected an unusual rate of 421-4.7.0 unsolicited mail originating from your IP address. To protect our 421-4.7.0 users from spam, mail sent from your IP address has been temporarily 421-4.7.0 rate limited. Please visit 421-4.7.0  https://support.google.com/mail/?p=Unso … LimitError to 421 4.7.0 review our Bulk Email Senders Guidelines. 94si36150554oto.184 - gsmtp (in reply to end of DATA command))
                                        user@gmail.com




[root@svr log]# cat /var/log/maillog | grep nitid@preynne.icu
Jan  8 16:47:16 mail postfix/qmgr[7552]: C20735C00BC: from=<nitid@preynne.icu>, size=4088, nrcpt=2 (queue active)
Jan  8 16:47:17 mail postfix/qmgr[7552]: C053C5C00CA: from=<nitid@preynne.icu>, size=5165, nrcpt=1 (queue active)
Jan  8 16:47:17 mail postfix/qmgr[7552]: B245B5C00C9: from=<nitid@preynne.icu>, size=5163, nrcpt=1 (queue active)
Jan  8 16:47:17 mail amavis[8664]: (08664-16) Passed CLEAN {RelayedInbound}, [37.44.228.26]:47675 [37.44.228.26] <nitid@preynne.icu> -> <user@gmail.com>, Queue-ID: C20735C00BC, Message-ID: <a5mXnsmMx7OEM0q58q37j_Fj6CFuarQ_-SuedNVjFFs.BcUlZfvnbV4bZYWBxRABeU5jk5LBBrmjPgKhQb_3CyA@preynne.icu>, mail_id: 7IJ-oPMrRrhi, Hits: 3.198, size: 4080, queued_as: B245B5C00C9, dkim_sd=mta:preynne.icu, 1612 ms
Jan  8 16:47:17 mail amavis[9333]: (09333-07) Passed CLEAN {RelayedInbound}, [37.44.228.26]:47675 [37.44.228.26] <nitid@preynne.icu> -> <USER@DOMAIN.com>, Queue-ID: C20735C00BC, Message-ID: <a5mXnsmMx7OEM0q58q37j_Fj6CFuarQ_-SuedNVjFFs.BcUlZfvnbV4bZYWBxRABeU5jk5LBBrmjPgKhQb_3CyA@preynne.icu>, mail_id: p0vHc8-Tt3S2, Hits: 3.198, size: 4080, queued_as: C053C5C00CA, dkim_sd=mta:preynne.icu, 1646 ms
Jan  8 16:48:08 mail postfix/qmgr[7552]: 732B95C00CB: from=<nitid@preynne.icu>, size=4251, nrcpt=1 (queue active)
Jan  8 16:48:10 mail postfix/qmgr[7552]: 5E95A5C00CA: from=<nitid@preynne.icu>, size=5318, nrcpt=1 (queue active)
Jan  8 16:48:10 mail amavis[9333]: (09333-08) Passed CLEAN {RelayedInbound}, [37.44.228.26]:46735 [37.44.228.26] <nitid@preynne.icu> -> <johnchu@lision.com.hk>, Queue-ID: 732B95C00CB, Message-ID: <IubjQ0LD1gk1zCy-0IXSyjB98BJbR3r4XHDllDwwP0c.-fVQwyp4oJS0suWakYUsGJCkzPxmgWCmfQkDIIf5SDo@preynne.icu>, mail_id: jcBhs87o2gqT, Hits: 3.198, size: 4243, queued_as: 5E95A5C00CA, dkim_sd=mta:preynne.icu, 1550 ms
Jan  8 16:48:10 mail postfix/pickup[5177]: 7A9895C00CB: uid=2000 from=<nitid@preynne.icu>
Jan  8 16:48:10 mail postfix/qmgr[7552]: 7A9895C00CB: from=<nitid@preynne.icu>, size=5550, nrcpt=1 (queue active)
Jan  8 16:48:12 mail postfix/qmgr[7552]: 29E9C5C00CA: from=<nitid@preynne.icu>, size=5993, nrcpt=1 (queue active)
Jan  8 16:48:12 mail amavis[8664]: (08664-17) Passed CLEAN {RelayedInbound}, [127.0.0.1] [37.44.228.26] <nitid@preynne.icu> -> <lisionhongltd@gmail.com>, Message-ID: <IubjQ0LD1gk1zCy-0IXSyjB98BJbR3r4XHDllDwwP0c.-fVQwyp4oJS0suWakYUsGJCkzPxmgWCmfQkDIIf5SDo@preynne.icu>, mail_id: aGYsSAm-6JX3, Hits: 3.199, size: 5542, queued_as: 29E9C5C00CA, dkim_sd=mta:preynne.icu, 1682 ms
Jan  8 16:48:24 mail postfix/qmgr[7552]: F24395C00CC: from=<nitid@preynne.icu>, size=4023, nrcpt=1 (queue active)
Jan  8 16:48:25 mail postfix/qmgr[7552]: DBCCE5C00D1: from=<nitid@preynne.icu>, size=5078, nrcpt=1 (queue active)
Jan  8 16:48:25 mail amavis[8885]: (08885-16) Passed CLEAN {RelayedInbound}, [37.44.228.26]:41454 [37.44.228.26] <nitid@preynne.icu> -> <sc@camieliu.com>, Queue-ID: F24395C00CC, Message-ID: <_RapTKeLIiKgGgQQBtB3RlVgHdpa8UPvqPTcQ0rQq64.5DmwmbJFQHq1P3ntXKwXbg@preynne.icu>, mail_id: gQPIEJdnDe1I, Hits: 3.198, size: 4015, queued_as: DBCCE5C00D1, dkim_sd=mta:preynne.icu, 1609 ms
Jan  8 16:48:41 mail postfix/qmgr[7552]: DCE795C00CC: from=<nitid@preynne.icu>, size=4237, nrcpt=1 (queue active)
Jan  8 16:48:42 mail postfix/qmgr[7552]: D36125C00CD: from=<nitid@preynne.icu>, size=5302, nrcpt=1 (queue active)
Jan  8 16:48:42 mail amavis[8615]: (08615-18) Passed CLEAN {RelayedInbound}, [37.44.228.26]:55985 [37.44.228.26] <nitid@preynne.icu> -> <newton@newton.com.hk>, Queue-ID: DCE795C00CC, Message-ID: <QoEkm7BesqEmklBUoXe_mbrOzCzDgfvdJa2fM_n6sDA.3JSqPxTDTgZb-S8x0w0s68xdYGUMfhoobjpEONb5uCI@preynne.icu>, mail_id: IcjOwn542hvF, Hits: 3.198, size: 4229, queued_as: D36125C00CD, dkim_sd=mta:preynne.icu, 1673 ms
Jan  8 16:54:49 mail postfix/qmgr[7552]: 29E9C5C00CA: from=<nitid@preynne.icu>, size=5993, nrcpt=1 (queue active)
Jan  8 16:54:49 mail postfix/qmgr[7552]: B245B5C00C9: from=<nitid@preynne.icu>, size=5163, nrcpt=1 (queue active)
Jan  8 17:04:49 mail postfix/qmgr[7552]: 29E9C5C00CA: from=<nitid@preynne.icu>, size=5993, nrcpt=1 (queue active)
Jan  8 17:04:49 mail postfix/qmgr[7552]: B245B5C00C9: from=<nitid@preynne.icu>, size=5163, nrcpt=1 (queue active)
Jan  8 17:24:49 mail postfix/qmgr[7552]: 29E9C5C00CA: from=<nitid@preynne.icu>, size=5993, nrcpt=1 (queue active)
Jan  8 17:24:49 mail postfix/qmgr[7552]: B245B5C00C9: from=<nitid@preynne.icu>, size=5163, nrcpt=1 (queue active)



[root@svr log]# cat /var/log/maillog | grep yquem@homylie.icu
Jan  8 17:41:37 mail postfix/qmgr[7552]: 25DED5C00C7: from=<yquem@homylie.icu>, size=6963, nrcpt=2 (queue active)
Jan  8 17:41:39 mail postfix/qmgr[7552]: 0B3F25C00CB: from=<yquem@homylie.icu>, size=7622, nrcpt=1 (queue active)
Jan  8 17:41:39 mail amavis[13728]: (13728-16) Passed CLEAN {RelayedInbound}, [37.44.228.27]:35092 [37.44.228.27] <yquem@homylie.icu> -> <USER@DOMAIN.com.hk>, Queue-ID: 25DED5C00C7, Message-ID: <HvSBAR3dvm_oiseUMDuvx4AJCuvIYUxn9awaz-mYRhY.rAJ7JPzgol1NlqqlCEGaJGtxgk-GO8XSBCFzb6kOwpE@homylie.icu>, mail_id: CTpG4ZpDqj5H, Hits: 1.503, size: 6951, queued_as: 0B3F25C00CB, dkim_sd=svr1:homylie.icu, 1589 ms
Jan  8 17:41:39 mail postfix/qmgr[7552]: 1E9EA5C00CC: from=<yquem@homylie.icu>, size=7620, nrcpt=1 (queue active)
Jan  8 17:41:39 mail amavis[13981]: (13981-14) Passed CLEAN {RelayedInbound}, [37.44.228.27]:35092 [37.44.228.27] <yquem@homylie.icu> -> <rebecca.hs.chiu@gmail.com>, Queue-ID: 25DED5C00C7, Message-ID: <HvSBAR3dvm_oiseUMDuvx4AJCuvIYUxn9awaz-mYRhY.rAJ7JPzgol1NlqqlCEGaJGtxgk-GO8XSBCFzb6kOwpE@homylie.icu>, mail_id: NJ1BPxaZW9Ln, Hits: 1.503, size: 6951, queued_as: 1E9EA5C00CC, dkim_sd=svr1:homylie.icu, 1671 ms
Jan  8 17:44:49 mail postfix/qmgr[7552]: D0EA55C00C4: from=<yquem@homylie.icu>, size=8641, nrcpt=1 (queue active)


nslookup

> preynne.icu
Server:  google-public-dns-a.google.com
Address:  8.8.8.8

Non-authoritative answer:
preynne.icu     MX preference = 10, mail exchanger = aspmx.l.google.com

> homylie.icu
Server:  google-public-dns-a.google.com
Address:  8.8.8.8

Non-authoritative answer:
homylie.icu     MX preference = 10, mail exchanger = aspmx.l.google.com

Re: Reviving Email Problem in Replication

0
0
aida wrote:

Why not to use Dovecot Replication? I'm still on beginning of mail server management, but what are you doing seems like overly complicated workaround for task which has actual tools available.

thanks for reply
i don`t know what is Dovecot ?
my senario is :
i have 2 iredmail servers with PostgreSQL back end
and i want to sync all my send or receive email in /var/vmail directory on my both servers

and my questions is:
does Dovecot Replication support my senario ?

Logs file Empty since IredAPD

0
0

==== REQUIRED BASIC INFO OF YOUR IREDMAIL SERVER ====
- iRedMail 0.9.9 MARIADB edition.
- Deployed with downloadable installer
- Ubuntu 18.04 64bit LTS
- Store mail accounts in which backend MySQL
- Web server Nginx
- Manage mail accounts with iRedAdmin-Pro? No
- Log is not properly running
====

Dear All,

I found mail.log,sieve.log,pop3.log,lda.log,imap.log and dovecot.log 0 size every time since I try to update iRedAPD iRedAPD-2.4 that i found from https://dl.iredmail.org/yum/misc/.

I got email as bellow :

/etc/cron.daily/logrotate:
Job for rsyslog.service failed.
See "systemctl status rsyslog.service" and "journalctl -xe" for details.
error: error running non-shared postrotate script for /var/log/php-fpm/php-fpm.log of '/var/log/php-fpm/*.log '
run-parts: /etc/cron.daily/logrotate exited with return code 1

systemctl status rsyslog.service Result :
systemctl status rsyslog.service
● rsyslog.service - System Logging Service
   Loaded: loaded (/lib/systemd/system/rsyslog.service; enabled; vendor preset:
   Active: failed (Result: start-limit-hit) since Sun 2019-01-06 06:25:07 WIB; 2
     Docs: man:rsyslogd(8)
           http://www.rsyslog.com/doc/
  Process: 9270 ExecStart=/usr/sbin/rsyslogd -n (code=exited, status=0/SUCCESS)
Main PID: 9270 (code=exited, status=0/SUCCESS)

Jan 06 06:25:06 mail.myserver.com rsyslogd[9270]: imuxsock: Acquired UNIX socket
Jan 06 06:25:06 mail.myserver.com rsyslogd[9270]: rsyslogd's groupid changed to 1
Jan 06 06:25:06 mail.myserver.com rsyslogd[9270]: rsyslogd's userid changed to 10
Jan 06 06:25:06 mail.myserver.com rsyslogd[9270]:  [origin software="rsyslogd" sw
Jan 06 06:25:07 mail.myserver.com systemd[1]: Stopping System Logging Service...
Jan 06 06:25:07 mail.myserver.com rsyslogd[9270]:  [origin software="rsyslogd" sw
Jan 06 06:25:07 mail.myserver.com systemd[1]: Stopped System Logging Service.
Jan 06 06:25:07 mail.myserver.com systemd[1]: rsyslog.service: Start request repe
Jan 06 06:25:07 mail.myserver.com systemd[1]: rsyslog.service: Failed with result
Jan 06 06:25:07 mail.myserver.com systemd[1]: Failed to start System Logging Serv
...skipping...
● rsyslog.service - System Logging Service


run-parts /etc/cron.daily/logrotate
run-parts: failed to open directory /etc/cron.daily/logrotate: Not a directory
root@mail:/home/myserver#



I know almost nothing about linux, so any help will be highly appreciated

Regards

Viewing all 45763 articles
Browse latest View live




Latest Images