diff --git a/ansible/README.md b/ansible/README.md new file mode 100644 index 0000000..38f6266 --- /dev/null +++ b/ansible/README.md @@ -0,0 +1,45 @@ +## Required packages on remote + +Python (installed with `pip` for user `adrien`): + +* docker +* docker-compose +* pymysql + +TODO: Ansible task to install that before the rest + +## Configure mailing + +When I send mails from the container with `php`, with current `msmtp` config, it fails if the recipient isn't `@luxeylab.net`. + +Host `mail.log`: + + # mail('adrien@yopmai.com'...) in container + Apr 2 09:07:56 Serenity postfix/smtpd[22617]: connect from unknown[172.27.1.2] + Apr 2 09:07:56 Serenity postfix/smtpd[22617]: NOQUEUE: reject: RCPT from unknown[172.27.1.2]: 454 4.7.1 : Relay access denied; from= to= proto=ESMTP helo= + Apr 2 09:07:56 Serenity postfix/smtpd[22617]: lost connection after DATA from unknown[172.27.1.2] + Apr 2 09:07:56 Serenity postfix/smtpd[22617]: disconnect from unknown[172.27.1.2] ehlo=1 mail=1 rcpt=0/1 data=0/1 commands=2/4 + + # mail('adrien@yopmai.com'...) on host + Apr 2 09:10:33 Serenity postfix/cleanup[27364]: 5DB1D3CCDA: message-id=<20200402071033.5DB1D3CCDA@luxeylab.net> + Apr 2 09:10:33 Serenity postfix/qmgr[2066]: 5DB1D3CCDA: from=, size=286, nrcpt=1 (queue active) + Apr 2 09:10:33 Serenity postfix/smtp[27366]: 5DB1D3CCDA: to=, relay=smtp.yopmail.com[87.98.164.155]:25, delay=0.68, delays=0.35/0/0.23/0.09, dsn=2.0.0, status=sent (250 mail saved) + Apr 2 09:10:33 Serenity postfix/qmgr[2066]: 5DB1D3CCDA: removed + + # mail('adrien@luxeylab.net'...) in container + Apr 2 08:08:12 Serenity postfix/smtpd[2647]: connect from unknown[172.27.1.2] + Apr 2 08:08:12 Serenity postfix/smtpd[2647]: 6BA723CCD8: client=unknown[172.27.1.2] + Apr 2 08:08:12 Serenity postfix/cleanup[5829]: 6BA723CCD8: message-id=<> + Apr 2 08:08:12 Serenity postfix/smtpd[2647]: disconnect from unknown[172.27.1.2] ehlo=1 mail=1 rcpt=1 data=1 quit=1 commands=5 + Apr 2 08:08:12 Serenity postfix/qmgr[2066]: 6BA723CCD8: from=, size=290, nrcpt=1 (queue active) + Apr 2 08:08:13 Serenity postfix/smtp[5831]: 6BA723CCD8: to=, orig_to=, relay=gmail-smtp-in.l.google.com[74.125.133.26]:25, delay=0.79, delays=0.23/0.03/0.11/0.42, dsn=2.0.0, status=sent (250 2.0.0 OK 1585807693 130si4035771wma.123 - gsmtp) + Apr 2 08:08:13 Serenity postfix/qmgr[2066]: 6BA723CCD8: removed + +Good docs on the topic: + +* [Explains postfix on Host+ssmtp in Docker in detail, poorly written](https://medium.com/@thilinaviraj950/configure-and-use-host-base-postfix-to-send-emails-from-a-container-18cd279fc460) +* [Another one](https://www.michelebologna.net/2019/send-an-email-from-a-docker-container/) + +I needed to add Docker's network (`172.0.0.0/8`) to `mynetworks` in `/etc/postfix/main.cf`. Also `inet_interfaces` would have had to be changed if Arthur didn't put it to `all`. + +**Now solved.** \ No newline at end of file diff --git a/ansible/ansible.cfg b/ansible/ansible.cfg index bf66e44..a1a218c 100644 --- a/ansible/ansible.cfg +++ b/ansible/ansible.cfg @@ -2,8 +2,6 @@ # To forward my SSH key to remote hosts, and be able to pull from gitlab transport = ssh -ask_vault_pass = True - [ssh_connection] # ForwardAgent to forward my SSH key to remote hosts, and be able to pull from gitlab diff --git a/ansible/build.yml b/ansible/build.yml index 1fba8d7..a419e29 100644 --- a/ansible/build.yml +++ b/ansible/build.yml @@ -1,5 +1,5 @@ --- -- hosts: all +- hosts: serenity gather_facts: no roles: - build \ No newline at end of file diff --git a/ansible/deploy.yml b/ansible/deploy.yml new file mode 100644 index 0000000..a6880ed --- /dev/null +++ b/ansible/deploy.yml @@ -0,0 +1,5 @@ +--- +- hosts: serenity + gather_facts: no + roles: + - deploy \ No newline at end of file diff --git a/ansible/group_vars/all/vars.yml b/ansible/group_vars/all/vars.yml index 0d275ec..ce943de 100644 --- a/ansible/group_vars/all/vars.yml +++ b/ansible/group_vars/all/vars.yml @@ -4,16 +4,73 @@ www_path: /vault/www sites_path: /vault/sites sites: - - slug: rdb # Shorthand name to use as directory/file name - # The complete site URL - url: www.rennesdesbois.fr - # What kind of service is that? + # - slug: rdb # Shorthand name to use as directory/file name + # # The site URL (without www) + # url: rennesdesbois.fr + # # Ask nginx to redirect url to www + # # Else, we redirect www to url + # redirect_to_www: yes + # # What kind of site is that? + # type: wordpress + # # Subnet addresses + # subnet_cidr_address: 172.27.1.0/24 + # subnet_gateway_ip: 172.27.1.1 + # subnet_site_ip: 172.27.1.2 + + # mysql_database: rdb + # mysql_username: rdb + # mysql_password: "{{ vault_rdb_mysql_password }}" + + # - slug: arvuhez # Shorthand name to use as directory/file name + # # The site URL (without www) + # url: arvuhez.org + # # Ask nginx to redirect url to www + # # Else, we redirect www to url + # redirect_to_www: no + # # What kind of site is that? + # type: wordpress + # # Subnet addresses + # subnet_cidr_address: 172.27.2.0/24 + # subnet_gateway_ip: 172.27.2.1 + # subnet_site_ip: 172.27.2.2 + + # mysql_database: arvuhez + # mysql_username: arvuhez + # mysql_password: "{{ vault_arvuhez_mysql_password }}" + + # - slug: zinzoscope # Shorthand name to use as directory/file name + # # The site URL (without www) + # url: zinz.luxeylab.net + # # Ask nginx to redirect url to www + # # Else, we redirect www to url + # redirect_to_www: no + # # What kind of site is that? + # type: wordpress + # # Subnet addresses + # subnet_cidr_address: 172.27.3.0/24 + # subnet_gateway_ip: 172.27.3.1 + # subnet_site_ip: 172.27.3.2 + + # mysql_database: zinzoscope + # mysql_username: zinzoscope + # mysql_password: "{{ vault_zinzoscope_mysql_password }}" + + - slug: lexperimental # Shorthand name to use as directory/file name + # The site URL (without www) + url: lexperimental.fr + # Ask nginx to redirect url to www + # Else, we redirect www to url + redirect_to_www: no + # What kind of site is that? type: wordpress # Subnet addresses - subnet_cidr_address: 172.27.1.0/24 - subnet_gateway_ip: 172.27.1.1 - subnet_site_ip: 172.27.1.2 + subnet_cidr_address: 172.27.4.0/24 + subnet_gateway_ip: 172.27.4.1 + subnet_site_ip: 172.27.4.2 - mysql_database: rdb - mysql_username: rdb - mysql_password: "{{ vault_rdb_mysql_password }}" \ No newline at end of file + mysql_database: lexperimental + mysql_username: lexperimental + mysql_password: "{{ vault_lexperimental_mysql_password }}" + +mysql_root_password: "{{ vault_mysql_root_password }}" +adrien_serenity_password: "{{ vault_adrien_serenity_password }}" \ No newline at end of file diff --git a/ansible/group_vars/all/vault.yml b/ansible/group_vars/all/vault.yml index 7dd401f..9954164 100644 --- a/ansible/group_vars/all/vault.yml +++ b/ansible/group_vars/all/vault.yml @@ -1,12 +1,27 @@ $ANSIBLE_VAULT;1.1;AES256 -31616336646162653732636532313464313632303932376532636465323836663938356630663236 -3761366235343066333133623030623532636566306433650a313433303236623333663837326231 -66613662623261373136386439353839633564356663316564613238353861396265386266353461 -3637666538346465370a313465643665333264646639353638623139383235336437373162613965 -61393237613832613661353266636664616661373362626265656136393539663938303463386563 -32616331643533646631613331383930363831383763636638326264346366363837353133626531 -32316539393837333035643833383239386166393061626630623939653232316161653538313938 -64316437343738306537306434663365653135353566363133396532306563306531656534653761 -34303963303231353061653933656335396339343138663335366435663461353931393531616239 -31313564346234353765343631653530343632616539383433303634333338323633633638326132 -643561303631356266313864623937313062 +66633138343934393133313432636535393566633962343761623535333534663239306465303932 +3234353334646338653032336438373732373463613738660a353632626633386234646631356330 +62386333366433326630616566396663643733323362393031653833333664633061653463366239 +3232623432326530310a613665306565623337643237323435616134353331633130386164373338 +35656438653730313730303562323239666166383432636332323063633238393936613766353664 +64653231663132343066643936333465376664666330373935323562323934616462386138373434 +31336265636134326233313564303666323639383130653130363539636633323262646663333138 +30396639393732333130363934666661633136623833626136643735373436393430663366386463 +63356330396536323066326435663131373464303135326630333264353632636563303435626237 +35383834663032656237643862383632633838353565356162383061353534303062376236663131 +64616366653663303336386237313737613137366435353030383663613437646261396533353366 +36373331383931383530363663643961623261616138653930623632646135383361393066343732 +30666532383766383535616665303065333065306437363534653166356432373262383136636534 +66343439626366633862363431643161313564326532663933366661396361646137616366306533 +61393062356166613533373363356239663533313032636261303130383634613161666438376465 +34333138646332343139656133356532613065303166356334353036623263343330393134303235 +30373966613838646432353061366134643465346165633638666130383236353664343362376364 +31663164663433613031336161373032303039313565306563646231313162663132316464323035 +35343836313232626238623933353930313064343565333466376630306566616630643632376433 +62373863353932623331303730366238363838376361343763396530326166343137343865323437 +63643835313261656465653937643263663932623138363861626463616438313935313363316430 +63363932353931383330326539353066353162373165653765346262666163356138663062353837 +33643434343637366237646636653331353038653264646237356338386266616262623766633230 +31346334326230356265313438353437393563336133393839633464373831653334356535343136 +62343433373736356130353236653963646532336164366639343963666666363066346133393165 +3136353565303762353234323430666263376661323266373766 diff --git a/ansible/inventory b/ansible/inventory index 4bf52e7..96b6151 100644 --- a/ansible/inventory +++ b/ansible/inventory @@ -1 +1,7 @@ -serenity ansible_host=92.243.8.85 ansible_user=adrien ansible_become_pass="{{ vault_adrien_serenity_password }}" +serenity ansible_host=92.243.8.85 ansible_user=adrien ansible_become_pass="{{ adrien_serenity_password }}" + +[py3-hosts] +serenity + +[py3-hosts:vars] +ansible_python_interpreter=/usr/bin/python3 diff --git a/ansible/mail.log b/ansible/mail.log new file mode 100644 index 0000000..7b8de9c --- /dev/null +++ b/ansible/mail.log @@ -0,0 +1,1000 @@ +Mar 31 04:12:02 Serenity postfix/qmgr[2066]: 468A43CCA5: from=, size=642, nrcpt=1 (queue active) +Mar 31 04:12:02 Serenity postfix/local[7418]: 468A43CCA5: to=, orig_to=, relay=local, delay=0.37, delays=0.32/0.02/0/0.03, dsn=2.0.0, status=sent (delivered to maildir) +Mar 31 04:12:02 Serenity postfix/qmgr[2066]: 468A43CCA5: removed +Mar 31 05:12:01 Serenity postfix/pickup[6559]: B9F513CCA6: uid=0 from= +Mar 31 05:12:01 Serenity postfix/cleanup[8517]: B9F513CCA6: message-id=<20200331031201.B9F513CCA6@luxeylab.net> +Mar 31 05:12:01 Serenity postfix/qmgr[2066]: B9F513CCA6: from=, size=642, nrcpt=1 (queue active) +Mar 31 05:12:01 Serenity postfix/local[8521]: B9F513CCA6: to=, orig_to=, relay=local, delay=0.22, delays=0.15/0.02/0/0.05, dsn=2.0.0, status=sent (delivered to maildir) +Mar 31 05:12:01 Serenity postfix/qmgr[2066]: B9F513CCA6: removed +Mar 31 06:12:02 Serenity postfix/pickup[8534]: 418F43CCA7: uid=0 from= +Mar 31 06:12:02 Serenity postfix/cleanup[9561]: 418F43CCA7: message-id=<20200331041202.418F43CCA7@luxeylab.net> +Mar 31 06:12:02 Serenity postfix/qmgr[2066]: 418F43CCA7: from=, size=642, nrcpt=1 (queue active) +Mar 31 06:12:02 Serenity postfix/local[9563]: 418F43CCA7: to=, orig_to=, relay=local, delay=0.4, delays=0.34/0.02/0/0.03, dsn=2.0.0, status=sent (delivered to maildir) +Mar 31 06:12:02 Serenity postfix/qmgr[2066]: 418F43CCA7: removed +Mar 31 07:12:01 Serenity postfix/pickup[10202]: ACC773CCA8: uid=0 from= +Mar 31 07:12:01 Serenity postfix/cleanup[10642]: ACC773CCA8: message-id=<20200331051201.ACC773CCA8@luxeylab.net> +Mar 31 07:12:01 Serenity postfix/qmgr[2066]: ACC773CCA8: from=, size=642, nrcpt=1 (queue active) +Mar 31 07:12:01 Serenity postfix/local[10644]: ACC773CCA8: to=, orig_to=, relay=local, delay=0.2, delays=0.17/0.03/0/0, dsn=2.0.0, status=sent (delivered to maildir) +Mar 31 07:12:01 Serenity postfix/qmgr[2066]: ACC773CCA8: removed +Mar 31 08:12:02 Serenity postfix/pickup[10202]: EBC5E3CCA9: uid=0 from= +Mar 31 08:12:02 Serenity postfix/cleanup[11671]: EBC5E3CCA9: message-id=<20200331061201.EBC5E3CCA9@luxeylab.net> +Mar 31 08:12:02 Serenity postfix/qmgr[2066]: EBC5E3CCA9: from=, size=642, nrcpt=1 (queue active) +Mar 31 08:12:02 Serenity postfix/local[11675]: EBC5E3CCA9: to=, orig_to=, relay=local, delay=0.27, delays=0.19/0.03/0/0.05, dsn=2.0.0, status=sent (delivered to maildir) +Mar 31 08:12:02 Serenity postfix/qmgr[2066]: EBC5E3CCA9: removed +Mar 31 09:12:02 Serenity postfix/pickup[4547]: 2738F3CCAA: uid=0 from= +Mar 31 09:12:02 Serenity postfix/cleanup[19922]: 2738F3CCAA: message-id=<20200331071202.2738F3CCAA@luxeylab.net> +Mar 31 09:12:02 Serenity postfix/qmgr[2066]: 2738F3CCAA: from=, size=642, nrcpt=1 (queue active) +Mar 31 09:12:02 Serenity postfix/local[19925]: 2738F3CCAA: to=, orig_to=, relay=local, delay=0.42, delays=0.35/0.04/0/0.03, dsn=2.0.0, status=sent (delivered to maildir) +Mar 31 09:12:02 Serenity postfix/qmgr[2066]: 2738F3CCAA: removed +Mar 31 09:13:36 Serenity postfix/smtpd[22965]: connect from unknown[218.1.18.154] +Mar 31 09:13:50 Serenity postfix/smtpd[22965]: NOQUEUE: reject: RCPT from unknown[218.1.18.154]: 454 4.7.1 : Relay access denied; from= to= proto=ESMTP helo= +Mar 31 09:13:51 Serenity postfix/smtpd[22965]: disconnect from unknown[218.1.18.154] ehlo=1 mail=1 rcpt=0/1 rset=1 quit=1 commands=4/5 +Mar 31 09:17:11 Serenity postfix/anvil[22967]: statistics: max connection rate 1/60s for (smtp:218.1.18.154) at Mar 31 09:13:36 +Mar 31 09:17:11 Serenity postfix/anvil[22967]: statistics: max connection count 1 for (smtp:218.1.18.154) at Mar 31 09:13:36 +Mar 31 09:17:11 Serenity postfix/anvil[22967]: statistics: max cache size 1 at Mar 31 09:13:36 +Mar 31 10:12:02 Serenity postfix/pickup[32498]: 496003CCAB: uid=0 from= +Mar 31 10:12:02 Serenity postfix/cleanup[6032]: 496003CCAB: message-id=<20200331081202.496003CCAB@luxeylab.net> +Mar 31 10:12:02 Serenity postfix/qmgr[2066]: 496003CCAB: from=, size=642, nrcpt=1 (queue active) +Mar 31 10:12:02 Serenity postfix/local[6035]: 496003CCAB: to=, orig_to=, relay=local, delay=0.24, delays=0.17/0.03/0/0.04, dsn=2.0.0, status=sent (delivered to maildir) +Mar 31 10:12:02 Serenity postfix/qmgr[2066]: 496003CCAB: removed +Mar 31 10:17:41 Serenity postfix/smtpd[16922]: connect from unknown[193.56.28.88] +Mar 31 10:17:45 Serenity postfix/smtpd[16922]: disconnect from unknown[193.56.28.88] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4 +Mar 31 10:18:37 Serenity postfix/smtpd[16922]: connect from unknown[193.56.28.88] +Mar 31 10:18:41 Serenity postfix/smtpd[16922]: disconnect from unknown[193.56.28.88] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4 +Mar 31 10:22:01 Serenity postfix/anvil[16924]: statistics: max connection rate 2/60s for (smtp:193.56.28.88) at Mar 31 10:18:37 +Mar 31 10:22:01 Serenity postfix/anvil[16924]: statistics: max connection count 1 for (smtp:193.56.28.88) at Mar 31 10:17:41 +Mar 31 10:22:01 Serenity postfix/anvil[16924]: statistics: max cache size 1 at Mar 31 10:17:41 +Mar 31 10:23:24 Serenity postfix/smtpd[27245]: connect from unknown[193.56.28.88] +Mar 31 10:23:27 Serenity postfix/smtpd[27245]: disconnect from unknown[193.56.28.88] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4 +Mar 31 10:26:47 Serenity postfix/anvil[27248]: statistics: max connection rate 1/60s for (smtp:193.56.28.88) at Mar 31 10:23:24 +Mar 31 10:26:47 Serenity postfix/anvil[27248]: statistics: max connection count 1 for (smtp:193.56.28.88) at Mar 31 10:23:24 +Mar 31 10:26:47 Serenity postfix/anvil[27248]: statistics: max cache size 1 at Mar 31 10:23:24 +Mar 31 11:12:02 Serenity postfix/pickup[32498]: A55C33CCAC: uid=0 from= +Mar 31 11:12:02 Serenity postfix/cleanup[22999]: A55C33CCAC: message-id=<20200331091202.A55C33CCAC@luxeylab.net> +Mar 31 11:12:02 Serenity postfix/qmgr[2066]: A55C33CCAC: from=, size=642, nrcpt=1 (queue active) +Mar 31 11:12:02 Serenity postfix/local[23013]: A55C33CCAC: to=, orig_to=, relay=local, delay=0.28, delays=0.24/0.02/0/0.02, dsn=2.0.0, status=sent (delivered to maildir) +Mar 31 11:12:02 Serenity postfix/qmgr[2066]: A55C33CCAC: removed +Mar 31 11:50:24 Serenity postfix/smtpd[32241]: warning: hostname rnd.group-ib.ru does not resolve to address 80.82.70.118 +Mar 31 11:50:24 Serenity postfix/smtpd[32241]: connect from unknown[80.82.70.118] +Mar 31 11:50:24 Serenity postfix/smtpd[32241]: SSL_accept error from unknown[80.82.70.118]: lost connection +Mar 31 11:50:24 Serenity postfix/smtpd[32241]: lost connection after STARTTLS from unknown[80.82.70.118] +Mar 31 11:50:24 Serenity postfix/smtpd[32241]: disconnect from unknown[80.82.70.118] ehlo=1 starttls=0/1 commands=1/2 +Mar 31 11:50:28 Serenity postfix/smtpd[32241]: connect from unknown[5.8.10.202] +Mar 31 11:50:28 Serenity postfix/smtpd[32241]: lost connection after UNKNOWN from unknown[5.8.10.202] +Mar 31 11:50:28 Serenity postfix/smtpd[32241]: disconnect from unknown[5.8.10.202] unknown=0/3 commands=0/3 +Mar 31 11:53:49 Serenity postfix/anvil[32244]: statistics: max connection rate 1/60s for (smtp:80.82.70.118) at Mar 31 11:50:24 +Mar 31 11:53:49 Serenity postfix/anvil[32244]: statistics: max connection count 1 for (smtp:80.82.70.118) at Mar 31 11:50:24 +Mar 31 11:53:49 Serenity postfix/anvil[32244]: statistics: max cache size 2 at Mar 31 11:50:28 +Mar 31 12:12:02 Serenity postfix/pickup[25938]: C5C503CCAD: uid=0 from= +Mar 31 12:12:02 Serenity postfix/cleanup[10532]: C5C503CCAD: message-id=<20200331101202.C5C503CCAD@luxeylab.net> +Mar 31 12:12:02 Serenity postfix/qmgr[2066]: C5C503CCAD: from=, size=642, nrcpt=1 (queue active) +Mar 31 12:12:02 Serenity postfix/local[10550]: C5C503CCAD: to=, orig_to=, relay=local, delay=0.22, delays=0.16/0.03/0/0.02, dsn=2.0.0, status=sent (delivered to maildir) +Mar 31 12:12:02 Serenity postfix/qmgr[2066]: C5C503CCAD: removed +Mar 31 13:12:02 Serenity postfix/pickup[25938]: 5F0C83CCAE: uid=0 from= +Mar 31 13:12:02 Serenity postfix/cleanup[27285]: 5F0C83CCAE: message-id=<20200331111202.5F0C83CCAE@luxeylab.net> +Mar 31 13:12:02 Serenity postfix/qmgr[2066]: 5F0C83CCAE: from=, size=642, nrcpt=1 (queue active) +Mar 31 13:12:02 Serenity postfix/local[27316]: 5F0C83CCAE: to=, orig_to=, relay=local, delay=0.47, delays=0.3/0.16/0/0.02, dsn=2.0.0, status=sent (delivered to maildir) +Mar 31 13:12:02 Serenity postfix/qmgr[2066]: 5F0C83CCAE: removed +Mar 31 14:11:14 Serenity postfix/smtpd[2655]: warning: hostname host82.200.110.137.ifxnw.com.ar does not resolve to address 200.110.137.82: Name or service not known +Mar 31 14:11:14 Serenity postfix/smtpd[2655]: connect from unknown[200.110.137.82] +Mar 31 14:11:15 Serenity postfix/smtpd[2655]: NOQUEUE: reject: RCPT from unknown[200.110.137.82]: 454 4.7.1 : Relay access denied; from= to= proto=ESMTP helo= +Mar 31 14:11:15 Serenity postfix/smtpd[2655]: disconnect from unknown[200.110.137.82] ehlo=1 mail=1 rcpt=0/1 rset=1 quit=1 commands=4/5 +Mar 31 14:12:03 Serenity postfix/pickup[19160]: 114A83CCAF: uid=0 from= +Mar 31 14:12:03 Serenity postfix/cleanup[2696]: 114A83CCAF: message-id=<20200331121203.114A83CCAF@luxeylab.net> +Mar 31 14:12:03 Serenity postfix/qmgr[2066]: 114A83CCAF: from=, size=642, nrcpt=1 (queue active) +Mar 31 14:12:03 Serenity postfix/local[2697]: 114A83CCAF: to=, orig_to=, relay=local, delay=0.22, delays=0.13/0.04/0/0.05, dsn=2.0.0, status=sent (delivered to maildir) +Mar 31 14:12:03 Serenity postfix/qmgr[2066]: 114A83CCAF: removed +Mar 31 14:14:35 Serenity postfix/anvil[2657]: statistics: max connection rate 1/60s for (smtp:200.110.137.82) at Mar 31 14:11:14 +Mar 31 14:14:35 Serenity postfix/anvil[2657]: statistics: max connection count 1 for (smtp:200.110.137.82) at Mar 31 14:11:14 +Mar 31 14:14:35 Serenity postfix/anvil[2657]: statistics: max cache size 1 at Mar 31 14:11:14 +Mar 31 15:12:02 Serenity postfix/pickup[3494]: 1EEB13CCB0: uid=0 from= +Mar 31 15:12:02 Serenity postfix/cleanup[3895]: 1EEB13CCB0: message-id=<20200331131202.1EEB13CCB0@luxeylab.net> +Mar 31 15:12:02 Serenity postfix/qmgr[2066]: 1EEB13CCB0: from=, size=642, nrcpt=1 (queue active) +Mar 31 15:12:02 Serenity postfix/local[3897]: 1EEB13CCB0: to=, orig_to=, relay=local, delay=0.19, delays=0.12/0.03/0/0.03, dsn=2.0.0, status=sent (delivered to maildir) +Mar 31 15:12:02 Serenity postfix/qmgr[2066]: 1EEB13CCB0: removed +Mar 31 16:12:01 Serenity postfix/pickup[3494]: 9C0CE3CCB1: uid=0 from= +Mar 31 16:12:01 Serenity postfix/cleanup[4867]: 9C0CE3CCB1: message-id=<20200331141201.9C0CE3CCB1@luxeylab.net> +Mar 31 16:12:01 Serenity postfix/qmgr[2066]: 9C0CE3CCB1: from=, size=642, nrcpt=1 (queue active) +Mar 31 16:12:01 Serenity postfix/local[4869]: 9C0CE3CCB1: to=, orig_to=, relay=local, delay=0.23, delays=0.18/0.03/0/0.02, dsn=2.0.0, status=sent (delivered to maildir) +Mar 31 16:12:01 Serenity postfix/qmgr[2066]: 9C0CE3CCB1: removed +Mar 31 16:48:34 Serenity postfix/smtpd[8678]: connect from scan-42.security.ipip.net[139.162.99.243] +Mar 31 16:48:34 Serenity postfix/smtpd[8678]: lost connection after CONNECT from scan-42.security.ipip.net[139.162.99.243] +Mar 31 16:48:34 Serenity postfix/smtpd[8678]: disconnect from scan-42.security.ipip.net[139.162.99.243] commands=0/0 +Mar 31 16:51:54 Serenity postfix/anvil[8680]: statistics: max connection rate 1/60s for (smtp:139.162.99.243) at Mar 31 16:48:34 +Mar 31 16:51:54 Serenity postfix/anvil[8680]: statistics: max connection count 1 for (smtp:139.162.99.243) at Mar 31 16:48:34 +Mar 31 16:51:54 Serenity postfix/anvil[8680]: statistics: max cache size 1 at Mar 31 16:48:34 +Mar 31 17:12:01 Serenity postfix/pickup[29248]: C6EEC3CCB2: uid=0 from= +Mar 31 17:12:01 Serenity postfix/cleanup[20440]: C6EEC3CCB2: message-id=<20200331151201.C6EEC3CCB2@luxeylab.net> +Mar 31 17:12:01 Serenity postfix/qmgr[2066]: C6EEC3CCB2: from=, size=642, nrcpt=1 (queue active) +Mar 31 17:12:01 Serenity postfix/local[20455]: C6EEC3CCB2: to=, orig_to=, relay=local, delay=0.27, delays=0.16/0.03/0/0.08, dsn=2.0.0, status=sent (delivered to maildir) +Mar 31 17:12:01 Serenity postfix/qmgr[2066]: C6EEC3CCB2: removed +Mar 31 18:12:02 Serenity postfix/pickup[29248]: 544AA3CCB3: uid=0 from= +Mar 31 18:12:02 Serenity postfix/cleanup[6537]: 544AA3CCB3: message-id=<20200331161202.544AA3CCB3@luxeylab.net> +Mar 31 18:12:02 Serenity postfix/qmgr[2066]: 544AA3CCB3: from=, size=642, nrcpt=1 (queue active) +Mar 31 18:12:02 Serenity postfix/local[6542]: 544AA3CCB3: to=, orig_to=, relay=local, delay=0.29, delays=0.23/0.03/0/0.04, dsn=2.0.0, status=sent (delivered to maildir) +Mar 31 18:12:02 Serenity postfix/qmgr[2066]: 544AA3CCB3: removed +Mar 31 18:17:46 Serenity postfix/smtpd[17437]: connect from unknown[112.45.114.76] +Mar 31 18:17:49 Serenity postfix/smtpd[17437]: disconnect from unknown[112.45.114.76] ehlo=1 auth=0/1 quit=1 commands=2/3 +Mar 31 18:21:09 Serenity postfix/anvil[17439]: statistics: max connection rate 1/60s for (smtp:112.45.114.76) at Mar 31 18:17:47 +Mar 31 18:21:09 Serenity postfix/anvil[17439]: statistics: max connection count 1 for (smtp:112.45.114.76) at Mar 31 18:17:47 +Mar 31 18:21:09 Serenity postfix/anvil[17439]: statistics: max cache size 1 at Mar 31 18:17:47 +Mar 31 19:12:02 Serenity postfix/pickup[22871]: 52B943CCB4: uid=0 from= +Mar 31 19:12:02 Serenity postfix/cleanup[15261]: 52B943CCB4: message-id=<20200331171202.52B943CCB4@luxeylab.net> +Mar 31 19:12:02 Serenity postfix/qmgr[2066]: 52B943CCB4: from=, size=642, nrcpt=1 (queue active) +Mar 31 19:12:02 Serenity postfix/local[15263]: 52B943CCB4: to=, orig_to=, relay=local, delay=0.17, delays=0.12/0.03/0/0.02, dsn=2.0.0, status=sent (delivered to maildir) +Mar 31 19:12:02 Serenity postfix/qmgr[2066]: 52B943CCB4: removed +Mar 31 20:12:01 Serenity postfix/pickup[16271]: B4C533CCB5: uid=0 from= +Mar 31 20:12:01 Serenity postfix/cleanup[16714]: B4C533CCB5: message-id=<20200331181201.B4C533CCB5@luxeylab.net> +Mar 31 20:12:01 Serenity postfix/qmgr[2066]: B4C533CCB5: from=, size=642, nrcpt=1 (queue active) +Mar 31 20:12:01 Serenity postfix/local[16718]: B4C533CCB5: to=, orig_to=, relay=local, delay=0.22, delays=0.14/0.03/0/0.05, dsn=2.0.0, status=sent (delivered to maildir) +Mar 31 20:12:01 Serenity postfix/qmgr[2066]: B4C533CCB5: removed +Mar 31 20:15:48 Serenity postfix/smtpd[16791]: connect from 36.20.97.83.ro.ovo.sc[83.97.20.36] +Mar 31 20:15:58 Serenity postfix/smtpd[16791]: lost connection after CONNECT from 36.20.97.83.ro.ovo.sc[83.97.20.36] +Mar 31 20:15:58 Serenity postfix/smtpd[16791]: disconnect from 36.20.97.83.ro.ovo.sc[83.97.20.36] commands=0/0 +Mar 31 20:19:19 Serenity postfix/anvil[16793]: statistics: max connection rate 1/60s for (smtp:83.97.20.36) at Mar 31 20:15:48 +Mar 31 20:19:19 Serenity postfix/anvil[16793]: statistics: max connection count 1 for (smtp:83.97.20.36) at Mar 31 20:15:48 +Mar 31 20:19:19 Serenity postfix/anvil[16793]: statistics: max cache size 1 at Mar 31 20:15:48 +Mar 31 20:45:19 Serenity postfix/smtpd[17469]: connect from 148-232-47-212.rev.cloud.scaleway.com[212.47.232.148] +Mar 31 20:45:19 Serenity postfix/smtpd[17469]: lost connection after CONNECT from 148-232-47-212.rev.cloud.scaleway.com[212.47.232.148] +Mar 31 20:45:19 Serenity postfix/smtpd[17469]: disconnect from 148-232-47-212.rev.cloud.scaleway.com[212.47.232.148] commands=0/0 +Mar 31 20:48:39 Serenity postfix/anvil[17471]: statistics: max connection rate 1/60s for (smtp:212.47.232.148) at Mar 31 20:45:19 +Mar 31 20:48:39 Serenity postfix/anvil[17471]: statistics: max connection count 1 for (smtp:212.47.232.148) at Mar 31 20:45:19 +Mar 31 20:48:39 Serenity postfix/anvil[17471]: statistics: max cache size 1 at Mar 31 20:45:19 +Mar 31 20:51:58 Serenity postfix/smtpd[17553]: connect from unknown[89.144.19.247] +Mar 31 20:51:58 Serenity postfix/smtpd[17553]: NOQUEUE: reject: RCPT from unknown[89.144.19.247]: 454 4.7.1 : Relay access denied; from=<1559431253@cwu.edu> to= proto=ESMTP helo= +Mar 31 20:51:58 Serenity postfix/smtpd[17553]: disconnect from unknown[89.144.19.247] ehlo=2 starttls=1 mail=1 rcpt=0/1 quit=1 commands=5/6 +Mar 31 20:55:18 Serenity postfix/anvil[17555]: statistics: max connection rate 1/60s for (smtp:89.144.19.247) at Mar 31 20:51:58 +Mar 31 20:55:18 Serenity postfix/anvil[17555]: statistics: max connection count 1 for (smtp:89.144.19.247) at Mar 31 20:51:58 +Mar 31 20:55:18 Serenity postfix/anvil[17555]: statistics: max cache size 1 at Mar 31 20:51:58 +Mar 31 21:12:02 Serenity postfix/pickup[16271]: 7E0B23CCB6: uid=0 from= +Mar 31 21:12:02 Serenity postfix/cleanup[18037]: 7E0B23CCB6: message-id=<20200331191202.7E0B23CCB6@luxeylab.net> +Mar 31 21:12:02 Serenity postfix/qmgr[2066]: 7E0B23CCB6: from=, size=642, nrcpt=1 (queue active) +Mar 31 21:12:02 Serenity postfix/local[18039]: 7E0B23CCB6: to=, orig_to=, relay=local, delay=0.19, delays=0.15/0.02/0/0.01, dsn=2.0.0, status=sent (delivered to maildir) +Mar 31 21:12:02 Serenity postfix/qmgr[2066]: 7E0B23CCB6: removed +Mar 31 22:12:02 Serenity postfix/pickup[18416]: 1453A3CCB7: uid=0 from= +Mar 31 22:12:02 Serenity postfix/cleanup[19205]: 1453A3CCB7: message-id=<20200331201202.1453A3CCB7@luxeylab.net> +Mar 31 22:12:02 Serenity postfix/qmgr[2066]: 1453A3CCB7: from=, size=642, nrcpt=1 (queue active) +Mar 31 22:12:02 Serenity postfix/local[19209]: 1453A3CCB7: to=, orig_to=, relay=local, delay=0.35, delays=0.17/0.03/0/0.15, dsn=2.0.0, status=sent (delivered to maildir) +Mar 31 22:12:02 Serenity postfix/qmgr[2066]: 1453A3CCB7: removed +Mar 31 22:15:05 Serenity postfix/smtpd[19251]: connect from unknown[193.56.28.88] +Mar 31 22:15:05 Serenity postfix/smtpd[19251]: disconnect from unknown[193.56.28.88] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4 +Mar 31 22:18:25 Serenity postfix/anvil[19253]: statistics: max connection rate 1/60s for (smtp:193.56.28.88) at Mar 31 22:15:05 +Mar 31 22:18:25 Serenity postfix/anvil[19253]: statistics: max connection count 1 for (smtp:193.56.28.88) at Mar 31 22:15:05 +Mar 31 22:18:25 Serenity postfix/anvil[19253]: statistics: max cache size 1 at Mar 31 22:15:05 +Mar 31 22:32:50 Serenity postfix/smtpd[19499]: connect from unknown[193.56.28.88] +Mar 31 22:32:50 Serenity postfix/smtpd[19499]: disconnect from unknown[193.56.28.88] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4 +Mar 31 22:36:10 Serenity postfix/anvil[19501]: statistics: max connection rate 1/60s for (smtp:193.56.28.88) at Mar 31 22:32:50 +Mar 31 22:36:10 Serenity postfix/anvil[19501]: statistics: max connection count 1 for (smtp:193.56.28.88) at Mar 31 22:32:50 +Mar 31 22:36:10 Serenity postfix/anvil[19501]: statistics: max cache size 1 at Mar 31 22:32:50 +Mar 31 22:41:15 Serenity postfix/smtpd[19751]: connect from unknown[193.56.28.88] +Mar 31 22:41:15 Serenity postfix/smtpd[19751]: disconnect from unknown[193.56.28.88] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4 +Mar 31 22:44:35 Serenity postfix/anvil[19753]: statistics: max connection rate 1/60s for (smtp:193.56.28.88) at Mar 31 22:41:15 +Mar 31 22:44:35 Serenity postfix/anvil[19753]: statistics: max connection count 1 for (smtp:193.56.28.88) at Mar 31 22:41:15 +Mar 31 22:44:35 Serenity postfix/anvil[19753]: statistics: max cache size 1 at Mar 31 22:41:15 +Mar 31 23:12:01 Serenity postfix/pickup[18416]: 9ABEA3CCB8: uid=0 from= +Mar 31 23:12:01 Serenity postfix/cleanup[20345]: 9ABEA3CCB8: message-id=<20200331211201.9ABEA3CCB8@luxeylab.net> +Mar 31 23:12:01 Serenity postfix/qmgr[2066]: 9ABEA3CCB8: from=, size=642, nrcpt=1 (queue active) +Mar 31 23:12:01 Serenity postfix/local[20347]: 9ABEA3CCB8: to=, orig_to=, relay=local, delay=0.24, delays=0.16/0.03/0/0.04, dsn=2.0.0, status=sent (delivered to maildir) +Mar 31 23:12:01 Serenity postfix/qmgr[2066]: 9ABEA3CCB8: removed +Mar 31 23:50:35 Serenity postfix/smtpd[21045]: connect from unknown[156.96.56.151] +Mar 31 23:50:35 Serenity postfix/smtpd[21045]: NOQUEUE: reject: RCPT from unknown[156.96.56.151]: 454 4.7.1 : Relay access denied; from= to= proto=ESMTP helo= +Mar 31 23:50:35 Serenity postfix/smtpd[21045]: disconnect from unknown[156.96.56.151] ehlo=1 mail=1 rcpt=0/1 rset=1 quit=1 commands=4/5 +Mar 31 23:53:56 Serenity postfix/anvil[21047]: statistics: max connection rate 1/60s for (smtp:156.96.56.151) at Mar 31 23:50:35 +Mar 31 23:53:56 Serenity postfix/anvil[21047]: statistics: max connection count 1 for (smtp:156.96.56.151) at Mar 31 23:50:35 +Mar 31 23:53:56 Serenity postfix/anvil[21047]: statistics: max cache size 1 at Mar 31 23:50:35 +Apr 1 00:12:02 Serenity postfix/pickup[20406]: 8ED073CCB9: uid=0 from= +Apr 1 00:12:02 Serenity postfix/cleanup[21432]: 8ED073CCB9: message-id=<20200331221202.8ED073CCB9@luxeylab.net> +Apr 1 00:12:02 Serenity postfix/qmgr[2066]: 8ED073CCB9: from=, size=642, nrcpt=1 (queue active) +Apr 1 00:12:02 Serenity postfix/local[21434]: 8ED073CCB9: to=, orig_to=, relay=local, delay=0.59, delays=0.53/0.02/0/0.04, dsn=2.0.0, status=sent (delivered to maildir) +Apr 1 00:12:02 Serenity postfix/qmgr[2066]: 8ED073CCB9: removed +Apr 1 01:12:01 Serenity postfix/pickup[22142]: 7BD303CCBA: uid=0 from= +Apr 1 01:12:01 Serenity postfix/cleanup[22516]: 7BD303CCBA: message-id=<20200331231201.7BD303CCBA@luxeylab.net> +Apr 1 01:12:01 Serenity postfix/qmgr[2066]: 7BD303CCBA: from=, size=642, nrcpt=1 (queue active) +Apr 1 01:12:01 Serenity postfix/local[22518]: 7BD303CCBA: to=, orig_to=, relay=local, delay=0.3, delays=0.23/0.03/0/0.04, dsn=2.0.0, status=sent (delivered to maildir) +Apr 1 01:12:01 Serenity postfix/qmgr[2066]: 7BD303CCBA: removed +Apr 1 01:22:29 Serenity postfix/smtpd[22614]: connect from unknown[193.56.28.88] +Apr 1 01:22:34 Serenity postfix/smtpd[22614]: disconnect from unknown[193.56.28.88] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4 +Apr 1 01:25:54 Serenity postfix/anvil[22616]: statistics: max connection rate 1/60s for (smtp:193.56.28.88) at Apr 1 01:22:29 +Apr 1 01:25:54 Serenity postfix/anvil[22616]: statistics: max connection count 1 for (smtp:193.56.28.88) at Apr 1 01:22:29 +Apr 1 01:25:54 Serenity postfix/anvil[22616]: statistics: max cache size 1 at Apr 1 01:22:29 +Apr 1 01:40:56 Serenity postfix/smtpd[22959]: connect from unknown[193.56.28.88] +Apr 1 01:40:57 Serenity postfix/smtpd[22959]: disconnect from unknown[193.56.28.88] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4 +Apr 1 01:44:17 Serenity postfix/anvil[22961]: statistics: max connection rate 1/60s for (smtp:193.56.28.88) at Apr 1 01:40:56 +Apr 1 01:44:17 Serenity postfix/anvil[22961]: statistics: max connection count 1 for (smtp:193.56.28.88) at Apr 1 01:40:56 +Apr 1 01:44:17 Serenity postfix/anvil[22961]: statistics: max cache size 1 at Apr 1 01:40:56 +Apr 1 02:05:43 Serenity postfix/smtpd[23325]: connect from unknown[193.56.28.88] +Apr 1 02:05:47 Serenity postfix/smtpd[23325]: disconnect from unknown[193.56.28.88] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4 +Apr 1 02:09:07 Serenity postfix/anvil[23327]: statistics: max connection rate 1/60s for (smtp:193.56.28.88) at Apr 1 02:05:43 +Apr 1 02:09:07 Serenity postfix/anvil[23327]: statistics: max connection count 1 for (smtp:193.56.28.88) at Apr 1 02:05:43 +Apr 1 02:09:07 Serenity postfix/anvil[23327]: statistics: max cache size 1 at Apr 1 02:05:43 +Apr 1 02:12:02 Serenity postfix/pickup[22142]: 0A25F3CCBB: uid=0 from= +Apr 1 02:12:02 Serenity postfix/cleanup[23576]: 0A25F3CCBB: message-id=<20200401001202.0A25F3CCBB@luxeylab.net> +Apr 1 02:12:02 Serenity postfix/qmgr[2066]: 0A25F3CCBB: from=, size=642, nrcpt=1 (queue active) +Apr 1 02:12:02 Serenity postfix/local[23578]: 0A25F3CCBB: to=, orig_to=, relay=local, delay=0.49, delays=0.4/0.03/0/0.07, dsn=2.0.0, status=sent (delivered to maildir) +Apr 1 02:12:02 Serenity postfix/qmgr[2066]: 0A25F3CCBB: removed +Apr 1 02:41:53 Serenity postfix/smtpd[24083]: warning: hostname zg-0312b-214.stretchoid.com does not resolve to address 192.241.239.126: Name or service not known +Apr 1 02:41:53 Serenity postfix/smtpd[24083]: connect from unknown[192.241.239.126] +Apr 1 02:41:53 Serenity postfix/smtpd[24083]: disconnect from unknown[192.241.239.126] ehlo=1 quit=1 commands=2 +Apr 1 02:45:13 Serenity postfix/anvil[24085]: statistics: max connection rate 1/60s for (smtp:192.241.239.126) at Apr 1 02:41:53 +Apr 1 02:45:13 Serenity postfix/anvil[24085]: statistics: max connection count 1 for (smtp:192.241.239.126) at Apr 1 02:41:53 +Apr 1 02:45:13 Serenity postfix/anvil[24085]: statistics: max cache size 1 at Apr 1 02:41:53 +Apr 1 02:49:56 Serenity postfix/smtpd[24203]: connect from unknown[185.234.219.82] +Apr 1 02:49:56 Serenity postfix/smtpd[24203]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 02:49:56 Serenity postfix/smtpd[24203]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 02:53:16 Serenity postfix/anvil[24205]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 02:49:56 +Apr 1 02:53:16 Serenity postfix/anvil[24205]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 02:49:56 +Apr 1 02:53:16 Serenity postfix/anvil[24205]: statistics: max cache size 1 at Apr 1 02:49:56 +Apr 1 03:00:43 Serenity postfix/smtpd[24386]: connect from unknown[185.234.219.82] +Apr 1 03:00:44 Serenity postfix/smtpd[24386]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 03:00:44 Serenity postfix/smtpd[24386]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 03:04:04 Serenity postfix/anvil[24388]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 03:00:43 +Apr 1 03:04:04 Serenity postfix/anvil[24388]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 03:00:43 +Apr 1 03:04:04 Serenity postfix/anvil[24388]: statistics: max cache size 1 at Apr 1 03:00:43 +Apr 1 03:09:30 Serenity postfix/smtpd[24686]: connect from unknown[185.234.219.82] +Apr 1 03:09:31 Serenity postfix/smtpd[24686]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 03:09:31 Serenity postfix/smtpd[24686]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 03:12:02 Serenity postfix/pickup[23794]: 745993CCBC: uid=0 from= +Apr 1 03:12:02 Serenity postfix/cleanup[24753]: 745993CCBC: message-id=<20200401011202.745993CCBC@luxeylab.net> +Apr 1 03:12:02 Serenity postfix/qmgr[2066]: 745993CCBC: from=, size=642, nrcpt=1 (queue active) +Apr 1 03:12:02 Serenity postfix/local[24755]: 745993CCBC: to=, orig_to=, relay=local, delay=0.56, delays=0.48/0.03/0/0.05, dsn=2.0.0, status=sent (delivered to maildir) +Apr 1 03:12:02 Serenity postfix/qmgr[2066]: 745993CCBC: removed +Apr 1 03:12:51 Serenity postfix/anvil[24688]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 03:09:30 +Apr 1 03:12:51 Serenity postfix/anvil[24688]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 03:09:30 +Apr 1 03:12:51 Serenity postfix/anvil[24688]: statistics: max cache size 1 at Apr 1 03:09:30 +Apr 1 03:18:34 Serenity postfix/smtpd[24826]: connect from unknown[185.234.219.82] +Apr 1 03:18:34 Serenity postfix/smtpd[24826]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 03:18:34 Serenity postfix/smtpd[24826]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 03:21:55 Serenity postfix/anvil[24828]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 03:18:34 +Apr 1 03:21:55 Serenity postfix/anvil[24828]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 03:18:34 +Apr 1 03:21:55 Serenity postfix/anvil[24828]: statistics: max cache size 1 at Apr 1 03:18:34 +Apr 1 03:27:31 Serenity postfix/smtpd[24931]: connect from unknown[185.234.219.82] +Apr 1 03:27:31 Serenity postfix/smtpd[24931]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 03:27:31 Serenity postfix/smtpd[24931]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 03:30:51 Serenity postfix/anvil[24933]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 03:27:31 +Apr 1 03:30:51 Serenity postfix/anvil[24933]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 03:27:31 +Apr 1 03:30:51 Serenity postfix/anvil[24933]: statistics: max cache size 1 at Apr 1 03:27:31 +Apr 1 03:36:18 Serenity postfix/smtpd[25067]: connect from unknown[185.234.219.82] +Apr 1 03:36:18 Serenity postfix/smtpd[25067]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 03:36:18 Serenity postfix/smtpd[25067]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 03:39:38 Serenity postfix/anvil[25069]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 03:36:18 +Apr 1 03:39:38 Serenity postfix/anvil[25069]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 03:36:18 +Apr 1 03:39:38 Serenity postfix/anvil[25069]: statistics: max cache size 1 at Apr 1 03:36:18 +Apr 1 03:44:58 Serenity postfix/smtpd[25352]: connect from unknown[185.234.219.82] +Apr 1 03:44:58 Serenity postfix/smtpd[25352]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 03:44:58 Serenity postfix/smtpd[25352]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 03:48:18 Serenity postfix/anvil[25354]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 03:44:58 +Apr 1 03:48:18 Serenity postfix/anvil[25354]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 03:44:58 +Apr 1 03:48:18 Serenity postfix/anvil[25354]: statistics: max cache size 1 at Apr 1 03:44:58 +Apr 1 03:53:39 Serenity postfix/smtpd[25456]: connect from unknown[185.234.219.82] +Apr 1 03:53:39 Serenity postfix/smtpd[25456]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 03:53:39 Serenity postfix/smtpd[25456]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 03:56:59 Serenity postfix/anvil[25458]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 03:53:39 +Apr 1 03:56:59 Serenity postfix/anvil[25458]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 03:53:39 +Apr 1 03:56:59 Serenity postfix/anvil[25458]: statistics: max cache size 1 at Apr 1 03:53:39 +Apr 1 04:02:16 Serenity postfix/smtpd[25605]: connect from unknown[185.234.219.82] +Apr 1 04:02:16 Serenity postfix/smtpd[25605]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 04:02:16 Serenity postfix/smtpd[25605]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 04:05:36 Serenity postfix/anvil[25608]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 04:02:16 +Apr 1 04:05:36 Serenity postfix/anvil[25608]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 04:02:16 +Apr 1 04:05:36 Serenity postfix/anvil[25608]: statistics: max cache size 1 at Apr 1 04:02:16 +Apr 1 04:10:55 Serenity postfix/smtpd[25904]: connect from unknown[185.234.219.82] +Apr 1 04:10:55 Serenity postfix/smtpd[25904]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 04:10:55 Serenity postfix/smtpd[25904]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 04:12:02 Serenity postfix/pickup[25912]: F1E303CCBD: uid=0 from= +Apr 1 04:12:02 Serenity postfix/cleanup[25953]: F1E303CCBD: message-id=<20200401021201.F1E303CCBD@luxeylab.net> +Apr 1 04:12:02 Serenity postfix/qmgr[2066]: F1E303CCBD: from=, size=642, nrcpt=1 (queue active) +Apr 1 04:12:02 Serenity postfix/local[25955]: F1E303CCBD: to=, orig_to=, relay=local, delay=0.27, delays=0.21/0.03/0/0.03, dsn=2.0.0, status=sent (delivered to maildir) +Apr 1 04:12:02 Serenity postfix/qmgr[2066]: F1E303CCBD: removed +Apr 1 04:14:15 Serenity postfix/anvil[25906]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 04:10:55 +Apr 1 04:14:15 Serenity postfix/anvil[25906]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 04:10:55 +Apr 1 04:14:15 Serenity postfix/anvil[25906]: statistics: max cache size 1 at Apr 1 04:10:55 +Apr 1 04:19:35 Serenity postfix/smtpd[26034]: connect from unknown[185.234.219.82] +Apr 1 04:19:35 Serenity postfix/smtpd[26034]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 04:19:35 Serenity postfix/smtpd[26034]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 04:22:55 Serenity postfix/anvil[26036]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 04:19:35 +Apr 1 04:22:55 Serenity postfix/anvil[26036]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 04:19:35 +Apr 1 04:22:55 Serenity postfix/anvil[26036]: statistics: max cache size 1 at Apr 1 04:19:35 +Apr 1 04:28:17 Serenity postfix/smtpd[26173]: connect from unknown[185.234.219.82] +Apr 1 04:28:17 Serenity postfix/smtpd[26173]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 04:28:17 Serenity postfix/smtpd[26173]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 04:31:37 Serenity postfix/anvil[26175]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 04:28:17 +Apr 1 04:31:37 Serenity postfix/anvil[26175]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 04:28:17 +Apr 1 04:31:37 Serenity postfix/anvil[26175]: statistics: max cache size 1 at Apr 1 04:28:17 +Apr 1 04:37:14 Serenity postfix/smtpd[26307]: connect from unknown[185.234.219.82] +Apr 1 04:37:15 Serenity postfix/smtpd[26307]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 04:37:15 Serenity postfix/smtpd[26307]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 04:40:35 Serenity postfix/anvil[26309]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 04:37:14 +Apr 1 04:40:35 Serenity postfix/anvil[26309]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 04:37:14 +Apr 1 04:40:35 Serenity postfix/anvil[26309]: statistics: max cache size 1 at Apr 1 04:37:14 +Apr 1 04:46:17 Serenity postfix/smtpd[26582]: connect from unknown[185.234.219.82] +Apr 1 04:46:17 Serenity postfix/smtpd[26582]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 04:46:17 Serenity postfix/smtpd[26582]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 04:49:38 Serenity postfix/anvil[26584]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 04:46:17 +Apr 1 04:49:38 Serenity postfix/anvil[26584]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 04:46:17 +Apr 1 04:49:38 Serenity postfix/anvil[26584]: statistics: max cache size 1 at Apr 1 04:46:17 +Apr 1 04:55:13 Serenity postfix/smtpd[26686]: connect from unknown[185.234.219.82] +Apr 1 04:55:13 Serenity postfix/smtpd[26686]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 04:55:13 Serenity postfix/smtpd[26686]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 04:58:34 Serenity postfix/anvil[26690]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 04:55:13 +Apr 1 04:58:34 Serenity postfix/anvil[26690]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 04:55:13 +Apr 1 04:58:34 Serenity postfix/anvil[26690]: statistics: max cache size 1 at Apr 1 04:55:13 +Apr 1 05:04:07 Serenity postfix/smtpd[26841]: connect from unknown[185.234.219.82] +Apr 1 05:04:08 Serenity postfix/smtpd[26841]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 05:04:08 Serenity postfix/smtpd[26841]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 05:07:28 Serenity postfix/anvil[26843]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 05:04:07 +Apr 1 05:07:28 Serenity postfix/anvil[26843]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 05:04:07 +Apr 1 05:07:28 Serenity postfix/anvil[26843]: statistics: max cache size 1 at Apr 1 05:04:07 +Apr 1 05:12:02 Serenity postfix/pickup[25912]: 634EB3CCBE: uid=0 from= +Apr 1 05:12:02 Serenity postfix/cleanup[27159]: 634EB3CCBE: message-id=<20200401031202.634EB3CCBE@luxeylab.net> +Apr 1 05:12:02 Serenity postfix/qmgr[2066]: 634EB3CCBE: from=, size=642, nrcpt=1 (queue active) +Apr 1 05:12:02 Serenity postfix/local[27161]: 634EB3CCBE: to=, orig_to=, relay=local, delay=0.32, delays=0.25/0.03/0/0.03, dsn=2.0.0, status=sent (delivered to maildir) +Apr 1 05:12:02 Serenity postfix/qmgr[2066]: 634EB3CCBE: removed +Apr 1 05:12:58 Serenity postfix/smtpd[27168]: connect from unknown[185.234.219.82] +Apr 1 05:12:58 Serenity postfix/smtpd[27168]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 05:12:58 Serenity postfix/smtpd[27168]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 05:16:18 Serenity postfix/anvil[27170]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 05:12:58 +Apr 1 05:16:18 Serenity postfix/anvil[27170]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 05:12:58 +Apr 1 05:16:18 Serenity postfix/anvil[27170]: statistics: max cache size 1 at Apr 1 05:12:58 +Apr 1 05:21:50 Serenity postfix/smtpd[27273]: connect from unknown[185.234.219.82] +Apr 1 05:21:50 Serenity postfix/smtpd[27273]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 05:21:50 Serenity postfix/smtpd[27273]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 05:25:10 Serenity postfix/anvil[27275]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 05:21:50 +Apr 1 05:25:10 Serenity postfix/anvil[27275]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 05:21:50 +Apr 1 05:25:10 Serenity postfix/anvil[27275]: statistics: max cache size 1 at Apr 1 05:21:50 +Apr 1 05:30:35 Serenity postfix/smtpd[27428]: connect from unknown[185.234.219.82] +Apr 1 05:30:35 Serenity postfix/smtpd[27428]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 05:30:35 Serenity postfix/smtpd[27428]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 05:33:55 Serenity postfix/anvil[27430]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 05:30:35 +Apr 1 05:33:55 Serenity postfix/anvil[27430]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 05:30:35 +Apr 1 05:33:55 Serenity postfix/anvil[27430]: statistics: max cache size 1 at Apr 1 05:30:35 +Apr 1 05:39:21 Serenity postfix/smtpd[27714]: connect from unknown[185.234.219.82] +Apr 1 05:39:21 Serenity postfix/smtpd[27714]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 05:39:21 Serenity postfix/smtpd[27714]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 05:42:41 Serenity postfix/anvil[27716]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 05:39:21 +Apr 1 05:42:41 Serenity postfix/anvil[27716]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 05:39:21 +Apr 1 05:42:41 Serenity postfix/anvil[27716]: statistics: max cache size 1 at Apr 1 05:39:21 +Apr 1 05:48:13 Serenity postfix/smtpd[27823]: connect from unknown[185.234.219.82] +Apr 1 05:48:13 Serenity postfix/smtpd[27823]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 05:48:13 Serenity postfix/smtpd[27823]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 05:51:33 Serenity postfix/anvil[27825]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 05:48:13 +Apr 1 05:51:33 Serenity postfix/anvil[27825]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 05:48:13 +Apr 1 05:51:33 Serenity postfix/anvil[27825]: statistics: max cache size 1 at Apr 1 05:48:13 +Apr 1 05:57:00 Serenity postfix/smtpd[27992]: connect from unknown[185.234.219.82] +Apr 1 05:57:00 Serenity postfix/smtpd[27992]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 05:57:00 Serenity postfix/smtpd[27992]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 06:00:20 Serenity postfix/anvil[27994]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 05:57:00 +Apr 1 06:00:20 Serenity postfix/anvil[27994]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 05:57:00 +Apr 1 06:00:20 Serenity postfix/anvil[27994]: statistics: max cache size 1 at Apr 1 05:57:00 +Apr 1 06:00:59 Serenity postfix/smtpd[28054]: connect from unknown[122.224.129.237] +Apr 1 06:01:24 Serenity postfix/smtpd[28054]: lost connection after EHLO from unknown[122.224.129.237] +Apr 1 06:01:24 Serenity postfix/smtpd[28054]: disconnect from unknown[122.224.129.237] ehlo=0/1 commands=0/1 +Apr 1 06:04:44 Serenity postfix/anvil[28056]: statistics: max connection rate 1/60s for (smtp:122.224.129.237) at Apr 1 06:00:59 +Apr 1 06:04:44 Serenity postfix/anvil[28056]: statistics: max connection count 1 for (smtp:122.224.129.237) at Apr 1 06:00:59 +Apr 1 06:04:44 Serenity postfix/anvil[28056]: statistics: max cache size 1 at Apr 1 06:00:59 +Apr 1 06:05:54 Serenity postfix/smtpd[28135]: connect from unknown[185.234.219.82] +Apr 1 06:05:55 Serenity postfix/smtpd[28135]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 06:05:55 Serenity postfix/smtpd[28135]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 06:09:15 Serenity postfix/anvil[28137]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 06:05:54 +Apr 1 06:09:15 Serenity postfix/anvil[28137]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 06:05:54 +Apr 1 06:09:15 Serenity postfix/anvil[28137]: statistics: max cache size 1 at Apr 1 06:05:54 +Apr 1 06:12:01 Serenity postfix/pickup[27843]: C9BB13CCBF: uid=0 from= +Apr 1 06:12:01 Serenity postfix/cleanup[28401]: C9BB13CCBF: message-id=<20200401041201.C9BB13CCBF@luxeylab.net> +Apr 1 06:12:01 Serenity postfix/qmgr[2066]: C9BB13CCBF: from=, size=642, nrcpt=1 (queue active) +Apr 1 06:12:02 Serenity postfix/local[28403]: C9BB13CCBF: to=, orig_to=, relay=local, delay=0.32, delays=0.27/0.03/0/0.02, dsn=2.0.0, status=sent (delivered to maildir) +Apr 1 06:12:02 Serenity postfix/qmgr[2066]: C9BB13CCBF: removed +Apr 1 06:14:42 Serenity postfix/smtpd[28427]: connect from unknown[185.234.219.82] +Apr 1 06:14:42 Serenity postfix/smtpd[28427]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 06:14:42 Serenity postfix/smtpd[28427]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 06:18:03 Serenity postfix/anvil[28429]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 06:14:42 +Apr 1 06:18:03 Serenity postfix/anvil[28429]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 06:14:42 +Apr 1 06:18:03 Serenity postfix/anvil[28429]: statistics: max cache size 1 at Apr 1 06:14:42 +Apr 1 06:23:18 Serenity postfix/smtpd[28497]: connect from unknown[185.234.219.82] +Apr 1 06:23:18 Serenity postfix/smtpd[28497]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 06:23:18 Serenity postfix/smtpd[28497]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 06:26:39 Serenity postfix/anvil[28499]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 06:23:18 +Apr 1 06:26:39 Serenity postfix/anvil[28499]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 06:23:18 +Apr 1 06:26:39 Serenity postfix/anvil[28499]: statistics: max cache size 1 at Apr 1 06:23:18 +Apr 1 06:31:52 Serenity postfix/smtpd[28609]: connect from unknown[185.234.219.82] +Apr 1 06:31:53 Serenity postfix/smtpd[28609]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 06:31:53 Serenity postfix/smtpd[28609]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 06:35:13 Serenity postfix/anvil[28611]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 06:31:52 +Apr 1 06:35:13 Serenity postfix/anvil[28611]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 06:31:52 +Apr 1 06:35:13 Serenity postfix/anvil[28611]: statistics: max cache size 1 at Apr 1 06:31:52 +Apr 1 06:40:23 Serenity postfix/smtpd[28947]: connect from unknown[185.234.219.82] +Apr 1 06:40:23 Serenity postfix/smtpd[28947]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 06:40:23 Serenity postfix/smtpd[28947]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 06:43:43 Serenity postfix/anvil[28949]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 06:40:23 +Apr 1 06:43:43 Serenity postfix/anvil[28949]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 06:40:23 +Apr 1 06:43:43 Serenity postfix/anvil[28949]: statistics: max cache size 1 at Apr 1 06:40:23 +Apr 1 06:48:55 Serenity postfix/smtpd[29038]: connect from unknown[185.234.219.82] +Apr 1 06:48:55 Serenity postfix/smtpd[29038]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 06:48:55 Serenity postfix/smtpd[29038]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 06:52:15 Serenity postfix/anvil[29040]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 06:48:55 +Apr 1 06:52:15 Serenity postfix/anvil[29040]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 06:48:55 +Apr 1 06:52:15 Serenity postfix/anvil[29040]: statistics: max cache size 1 at Apr 1 06:48:55 +Apr 1 06:57:32 Serenity postfix/smtpd[29169]: connect from unknown[185.234.219.82] +Apr 1 06:57:32 Serenity postfix/smtpd[29169]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 06:57:32 Serenity postfix/smtpd[29169]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 07:00:52 Serenity postfix/anvil[29171]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 06:57:32 +Apr 1 07:00:52 Serenity postfix/anvil[29171]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 06:57:32 +Apr 1 07:00:52 Serenity postfix/anvil[29171]: statistics: max cache size 1 at Apr 1 06:57:32 +Apr 1 07:06:11 Serenity postfix/smtpd[29285]: connect from unknown[185.234.219.82] +Apr 1 07:06:11 Serenity postfix/smtpd[29285]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 07:06:11 Serenity postfix/smtpd[29285]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 07:09:31 Serenity postfix/anvil[29287]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 07:06:11 +Apr 1 07:09:31 Serenity postfix/anvil[29287]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 07:06:11 +Apr 1 07:09:31 Serenity postfix/anvil[29287]: statistics: max cache size 1 at Apr 1 07:06:11 +Apr 1 07:12:01 Serenity postfix/pickup[27843]: 62A5A3CCC0: uid=0 from= +Apr 1 07:12:01 Serenity postfix/cleanup[29545]: 62A5A3CCC0: message-id=<20200401051201.62A5A3CCC0@luxeylab.net> +Apr 1 07:12:01 Serenity postfix/qmgr[2066]: 62A5A3CCC0: from=, size=642, nrcpt=1 (queue active) +Apr 1 07:12:01 Serenity postfix/local[29547]: 62A5A3CCC0: to=, orig_to=, relay=local, delay=0.38, delays=0.28/0.03/0/0.08, dsn=2.0.0, status=sent (delivered to maildir) +Apr 1 07:12:01 Serenity postfix/qmgr[2066]: 62A5A3CCC0: removed +Apr 1 07:13:04 Serenity postfix/smtpd[29556]: warning: hostname internettl.org does not resolve to address 104.152.52.36 +Apr 1 07:13:04 Serenity postfix/smtpd[29556]: connect from unknown[104.152.52.36] +Apr 1 07:13:05 Serenity postfix/smtpd[29556]: SSL_accept error from unknown[104.152.52.36]: lost connection +Apr 1 07:13:05 Serenity postfix/smtpd[29556]: lost connection after STARTTLS from unknown[104.152.52.36] +Apr 1 07:13:05 Serenity postfix/smtpd[29556]: disconnect from unknown[104.152.52.36] ehlo=1 starttls=0/1 commands=1/2 +Apr 1 07:14:41 Serenity postfix/smtpd[29556]: connect from unknown[185.234.219.82] +Apr 1 07:14:41 Serenity postfix/smtpd[29556]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 07:14:41 Serenity postfix/smtpd[29556]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 07:18:02 Serenity postfix/anvil[29559]: statistics: max connection rate 1/60s for (smtp:104.152.52.36) at Apr 1 07:13:04 +Apr 1 07:18:02 Serenity postfix/anvil[29559]: statistics: max connection count 1 for (smtp:104.152.52.36) at Apr 1 07:13:04 +Apr 1 07:18:02 Serenity postfix/anvil[29559]: statistics: max cache size 1 at Apr 1 07:13:04 +Apr 1 07:23:15 Serenity postfix/smtpd[29656]: connect from unknown[185.234.219.82] +Apr 1 07:23:15 Serenity postfix/smtpd[29656]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 07:23:15 Serenity postfix/smtpd[29656]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 07:26:35 Serenity postfix/anvil[29658]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 07:23:15 +Apr 1 07:26:35 Serenity postfix/anvil[29658]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 07:23:15 +Apr 1 07:26:35 Serenity postfix/anvil[29658]: statistics: max cache size 1 at Apr 1 07:23:15 +Apr 1 07:31:51 Serenity postfix/smtpd[29753]: connect from unknown[185.234.219.82] +Apr 1 07:31:51 Serenity postfix/smtpd[29753]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 07:31:51 Serenity postfix/smtpd[29753]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 07:35:11 Serenity postfix/anvil[29755]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 07:31:51 +Apr 1 07:35:11 Serenity postfix/anvil[29755]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 07:31:51 +Apr 1 07:35:11 Serenity postfix/anvil[29755]: statistics: max cache size 1 at Apr 1 07:31:51 +Apr 1 07:36:48 Serenity postfix/smtpd[29823]: connect from unknown[193.56.28.88] +Apr 1 07:36:48 Serenity postfix/smtpd[29823]: disconnect from unknown[193.56.28.88] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4 +Apr 1 07:40:09 Serenity postfix/anvil[29825]: statistics: max connection rate 1/60s for (smtp:193.56.28.88) at Apr 1 07:36:48 +Apr 1 07:40:09 Serenity postfix/anvil[29825]: statistics: max connection count 1 for (smtp:193.56.28.88) at Apr 1 07:36:48 +Apr 1 07:40:09 Serenity postfix/anvil[29825]: statistics: max cache size 1 at Apr 1 07:36:48 +Apr 1 07:40:22 Serenity postfix/smtpd[30012]: connect from unknown[185.234.219.82] +Apr 1 07:40:22 Serenity postfix/smtpd[30012]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 07:40:22 Serenity postfix/smtpd[30012]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 07:43:42 Serenity postfix/anvil[30014]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 07:40:22 +Apr 1 07:43:42 Serenity postfix/anvil[30014]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 07:40:22 +Apr 1 07:43:42 Serenity postfix/anvil[30014]: statistics: max cache size 1 at Apr 1 07:40:22 +Apr 1 07:48:07 Serenity postfix/smtpd[30095]: connect from unknown[193.56.28.88] +Apr 1 07:48:08 Serenity postfix/smtpd[30095]: disconnect from unknown[193.56.28.88] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4 +Apr 1 07:48:51 Serenity postfix/smtpd[30095]: connect from unknown[185.234.219.82] +Apr 1 07:48:51 Serenity postfix/smtpd[30095]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 07:48:51 Serenity postfix/smtpd[30095]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 07:52:11 Serenity postfix/anvil[30097]: statistics: max connection rate 1/60s for (smtp:193.56.28.88) at Apr 1 07:48:07 +Apr 1 07:52:11 Serenity postfix/anvil[30097]: statistics: max connection count 1 for (smtp:193.56.28.88) at Apr 1 07:48:07 +Apr 1 07:52:11 Serenity postfix/anvil[30097]: statistics: max cache size 2 at Apr 1 07:48:51 +Apr 1 07:57:18 Serenity postfix/smtpd[30171]: connect from unknown[185.234.219.82] +Apr 1 07:57:18 Serenity postfix/smtpd[30171]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 07:57:18 Serenity postfix/smtpd[30171]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 07:59:37 Serenity postfix/smtpd[30190]: connect from unknown[193.56.28.88] +Apr 1 07:59:37 Serenity postfix/smtpd[30190]: disconnect from unknown[193.56.28.88] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4 +Apr 1 08:02:57 Serenity postfix/anvil[30173]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 07:57:18 +Apr 1 08:02:57 Serenity postfix/anvil[30173]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 07:57:18 +Apr 1 08:02:57 Serenity postfix/anvil[30173]: statistics: max cache size 1 at Apr 1 07:57:18 +Apr 1 08:05:55 Serenity postfix/smtpd[4701]: connect from unknown[185.234.219.82] +Apr 1 08:05:55 Serenity postfix/smtpd[4701]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 08:05:55 Serenity postfix/smtpd[4701]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 08:09:15 Serenity postfix/anvil[4703]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 08:05:55 +Apr 1 08:09:15 Serenity postfix/anvil[4703]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 08:05:55 +Apr 1 08:09:15 Serenity postfix/anvil[4703]: statistics: max cache size 1 at Apr 1 08:05:55 +Apr 1 08:12:02 Serenity postfix/pickup[29719]: 1F92F3CCC1: uid=0 from= +Apr 1 08:12:02 Serenity postfix/cleanup[17677]: 1F92F3CCC1: message-id=<20200401061202.1F92F3CCC1@luxeylab.net> +Apr 1 08:12:02 Serenity postfix/qmgr[2066]: 1F92F3CCC1: from=, size=642, nrcpt=1 (queue active) +Apr 1 08:12:02 Serenity postfix/local[17679]: 1F92F3CCC1: to=, orig_to=, relay=local, delay=0.59, delays=0.34/0.04/0/0.2, dsn=2.0.0, status=sent (delivered to maildir) +Apr 1 08:12:02 Serenity postfix/qmgr[2066]: 1F92F3CCC1: removed +Apr 1 08:14:44 Serenity postfix/smtpd[24016]: connect from unknown[185.234.219.82] +Apr 1 08:14:44 Serenity postfix/smtpd[24016]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 08:14:44 Serenity postfix/smtpd[24016]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 08:18:04 Serenity postfix/anvil[24020]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 08:14:44 +Apr 1 08:18:04 Serenity postfix/anvil[24020]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 08:14:44 +Apr 1 08:18:04 Serenity postfix/anvil[24020]: statistics: max cache size 1 at Apr 1 08:14:44 +Apr 1 08:23:18 Serenity postfix/smtpd[8989]: connect from unknown[185.234.219.82] +Apr 1 08:23:19 Serenity postfix/smtpd[8989]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 08:23:19 Serenity postfix/smtpd[8989]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 08:26:39 Serenity postfix/anvil[8991]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 08:23:19 +Apr 1 08:26:39 Serenity postfix/anvil[8991]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 08:23:19 +Apr 1 08:26:39 Serenity postfix/anvil[8991]: statistics: max cache size 1 at Apr 1 08:23:19 +Apr 1 08:31:59 Serenity postfix/smtpd[27283]: connect from unknown[185.234.219.82] +Apr 1 08:31:59 Serenity postfix/smtpd[27283]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 08:31:59 Serenity postfix/smtpd[27283]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 08:35:20 Serenity postfix/anvil[27285]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 08:31:59 +Apr 1 08:35:20 Serenity postfix/anvil[27285]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 08:31:59 +Apr 1 08:35:20 Serenity postfix/anvil[27285]: statistics: max cache size 1 at Apr 1 08:31:59 +Apr 1 08:37:14 Serenity postfix/smtpd[4860]: connect from unknown[172.27.1.2] +Apr 1 08:37:14 Serenity postfix/smtpd[4860]: A7CCB3CCC1: client=unknown[172.27.1.2] +Apr 1 08:37:14 Serenity postfix/cleanup[4883]: A7CCB3CCC1: message-id=<> +Apr 1 08:37:14 Serenity postfix/smtpd[4860]: disconnect from unknown[172.27.1.2] ehlo=1 mail=1 rcpt=1 data=1 quit=1 commands=5 +Apr 1 08:37:14 Serenity postfix/qmgr[2066]: A7CCB3CCC1: from=, size=286, nrcpt=1 (queue active) +Apr 1 08:37:15 Serenity postfix/smtp[4893]: A7CCB3CCC1: to=, orig_to=, relay=gmail-smtp-in.l.google.com[2a00:1450:4013:c01::1a]:25, delay=0.82, delays=0.1/0.08/0.17/0.46, dsn=2.0.0, status=sent (250 2.0.0 OK 1585723035 j5si783157edn.417 - gsmtp) +Apr 1 08:37:15 Serenity postfix/qmgr[2066]: A7CCB3CCC1: removed +Apr 1 08:37:25 Serenity postfix/smtpd[4860]: connect from unknown[172.27.1.2] +Apr 1 08:37:25 Serenity postfix/smtpd[4860]: 14FD33CCC1: client=unknown[172.27.1.2] +Apr 1 08:37:25 Serenity postfix/cleanup[4883]: 14FD33CCC1: message-id=<> +Apr 1 08:37:25 Serenity postfix/smtpd[4860]: disconnect from unknown[172.27.1.2] ehlo=1 mail=1 rcpt=1 data=1 quit=1 commands=5 +Apr 1 08:37:25 Serenity postfix/qmgr[2066]: 14FD33CCC1: from=, size=281, nrcpt=1 (queue active) +Apr 1 08:37:25 Serenity postfix/smtp[4893]: 14FD33CCC1: to=, orig_to=, relay=gmail-smtp-in.l.google.com[64.233.184.27]:25, delay=0.55, delays=0.08/0/0.19/0.28, dsn=2.0.0, status=sent (250 2.0.0 OK 1585723045 a131si1025246wmc.6 - gsmtp) +Apr 1 08:37:25 Serenity postfix/qmgr[2066]: 14FD33CCC1: removed +Apr 1 08:40:30 Serenity postfix/smtpd[11677]: connect from unknown[185.234.219.82] +Apr 1 08:40:30 Serenity postfix/smtpd[11677]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 08:40:30 Serenity postfix/smtpd[11677]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 08:43:50 Serenity postfix/anvil[4871]: statistics: max connection rate 2/60s for (smtp:172.27.1.2) at Apr 1 08:37:25 +Apr 1 08:43:50 Serenity postfix/anvil[4871]: statistics: max connection count 1 for (smtp:172.27.1.2) at Apr 1 08:37:14 +Apr 1 08:43:50 Serenity postfix/anvil[4871]: statistics: max cache size 1 at Apr 1 08:37:14 +Apr 1 08:45:14 Serenity postfix/smtpd[20296]: connect from lstlambert-656-1-48-236.w92-154.abo.wanadoo.fr[92.154.95.236] +Apr 1 08:45:14 Serenity postfix/smtpd[20296]: SSL_accept error from lstlambert-656-1-48-236.w92-154.abo.wanadoo.fr[92.154.95.236]: lost connection +Apr 1 08:45:14 Serenity postfix/smtpd[20296]: lost connection after STARTTLS from lstlambert-656-1-48-236.w92-154.abo.wanadoo.fr[92.154.95.236] +Apr 1 08:45:14 Serenity postfix/smtpd[20296]: disconnect from lstlambert-656-1-48-236.w92-154.abo.wanadoo.fr[92.154.95.236] ehlo=1 starttls=0/1 commands=1/2 +Apr 1 08:48:34 Serenity postfix/anvil[20298]: statistics: max connection rate 1/60s for (smtp:92.154.95.236) at Apr 1 08:45:14 +Apr 1 08:48:34 Serenity postfix/anvil[20298]: statistics: max connection count 1 for (smtp:92.154.95.236) at Apr 1 08:45:14 +Apr 1 08:48:34 Serenity postfix/anvil[20298]: statistics: max cache size 1 at Apr 1 08:45:14 +Apr 1 08:48:59 Serenity postfix/smtpd[27739]: connect from unknown[185.234.219.82] +Apr 1 08:48:59 Serenity postfix/smtpd[27739]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 08:48:59 Serenity postfix/smtpd[27739]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 08:52:19 Serenity postfix/anvil[27741]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 08:48:59 +Apr 1 08:52:19 Serenity postfix/anvil[27741]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 08:48:59 +Apr 1 08:52:19 Serenity postfix/anvil[27741]: statistics: max cache size 1 at Apr 1 08:48:59 +Apr 1 08:57:27 Serenity postfix/smtpd[11430]: connect from unknown[185.234.219.82] +Apr 1 08:57:27 Serenity postfix/smtpd[11430]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 08:57:27 Serenity postfix/smtpd[11430]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 09:00:47 Serenity postfix/anvil[11432]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 08:57:27 +Apr 1 09:00:47 Serenity postfix/anvil[11432]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 08:57:27 +Apr 1 09:00:47 Serenity postfix/anvil[11432]: statistics: max cache size 1 at Apr 1 08:57:27 +Apr 1 09:06:03 Serenity postfix/smtpd[28133]: connect from unknown[185.234.219.82] +Apr 1 09:06:03 Serenity postfix/smtpd[28133]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 09:06:03 Serenity postfix/smtpd[28133]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 09:09:23 Serenity postfix/anvil[28135]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 09:06:03 +Apr 1 09:09:23 Serenity postfix/anvil[28135]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 09:06:03 +Apr 1 09:09:23 Serenity postfix/anvil[28135]: statistics: max cache size 1 at Apr 1 09:06:03 +Apr 1 09:12:02 Serenity postfix/pickup[29165]: 6150C3CCC2: uid=0 from= +Apr 1 09:12:02 Serenity postfix/cleanup[6971]: 6150C3CCC2: message-id=<20200401071202.6150C3CCC2@luxeylab.net> +Apr 1 09:12:02 Serenity postfix/qmgr[2066]: 6150C3CCC2: from=, size=642, nrcpt=1 (queue active) +Apr 1 09:12:02 Serenity postfix/local[6974]: 6150C3CCC2: to=, orig_to=, relay=local, delay=0.23, delays=0.17/0.03/0/0.03, dsn=2.0.0, status=sent (delivered to maildir) +Apr 1 09:12:02 Serenity postfix/qmgr[2066]: 6150C3CCC2: removed +Apr 1 09:14:29 Serenity postfix/smtpd[11598]: connect from unknown[185.234.219.82] +Apr 1 09:14:29 Serenity postfix/smtpd[11598]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 09:14:29 Serenity postfix/smtpd[11598]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 09:17:49 Serenity postfix/anvil[11601]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 09:14:29 +Apr 1 09:17:49 Serenity postfix/anvil[11601]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 09:14:29 +Apr 1 09:17:49 Serenity postfix/anvil[11601]: statistics: max cache size 1 at Apr 1 09:14:29 +Apr 1 09:22:54 Serenity postfix/smtpd[29245]: connect from unknown[185.234.219.82] +Apr 1 09:22:54 Serenity postfix/smtpd[29245]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 09:22:54 Serenity postfix/smtpd[29245]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 09:26:14 Serenity postfix/anvil[29247]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 09:22:54 +Apr 1 09:26:14 Serenity postfix/anvil[29247]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 09:22:54 +Apr 1 09:26:14 Serenity postfix/anvil[29247]: statistics: max cache size 1 at Apr 1 09:22:54 +Apr 1 09:31:20 Serenity postfix/smtpd[13776]: connect from unknown[185.234.219.82] +Apr 1 09:31:20 Serenity postfix/smtpd[13776]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 09:31:20 Serenity postfix/smtpd[13776]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 09:34:41 Serenity postfix/anvil[13778]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 09:31:20 +Apr 1 09:34:41 Serenity postfix/anvil[13778]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 09:31:20 +Apr 1 09:34:41 Serenity postfix/anvil[13778]: statistics: max cache size 1 at Apr 1 09:31:20 +Apr 1 09:39:48 Serenity postfix/smtpd[30986]: connect from unknown[185.234.219.82] +Apr 1 09:39:48 Serenity postfix/smtpd[30986]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 09:39:48 Serenity postfix/smtpd[30986]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 09:43:08 Serenity postfix/anvil[30988]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 09:39:48 +Apr 1 09:43:08 Serenity postfix/anvil[30988]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 09:39:48 +Apr 1 09:43:08 Serenity postfix/anvil[30988]: statistics: max cache size 1 at Apr 1 09:39:48 +Apr 1 09:48:19 Serenity postfix/smtpd[15784]: connect from unknown[185.234.219.82] +Apr 1 09:48:19 Serenity postfix/smtpd[15784]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 09:48:19 Serenity postfix/smtpd[15784]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 09:51:39 Serenity postfix/anvil[15797]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 09:48:19 +Apr 1 09:51:39 Serenity postfix/anvil[15797]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 09:48:19 +Apr 1 09:51:39 Serenity postfix/anvil[15797]: statistics: max cache size 1 at Apr 1 09:48:19 +Apr 1 09:56:47 Serenity postfix/smtpd[32352]: connect from unknown[185.234.219.82] +Apr 1 09:56:47 Serenity postfix/smtpd[32352]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 09:56:47 Serenity postfix/smtpd[32352]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 10:00:07 Serenity postfix/anvil[32354]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 09:56:47 +Apr 1 10:00:07 Serenity postfix/anvil[32354]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 09:56:47 +Apr 1 10:00:07 Serenity postfix/anvil[32354]: statistics: max cache size 1 at Apr 1 09:56:47 +Apr 1 10:05:17 Serenity postfix/smtpd[16013]: connect from unknown[185.234.219.82] +Apr 1 10:05:17 Serenity postfix/smtpd[16013]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 10:05:17 Serenity postfix/smtpd[16013]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 10:08:37 Serenity postfix/anvil[16015]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 10:05:17 +Apr 1 10:08:37 Serenity postfix/anvil[16015]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 10:05:17 +Apr 1 10:08:37 Serenity postfix/anvil[16015]: statistics: max cache size 1 at Apr 1 10:05:17 +Apr 1 10:12:02 Serenity postfix/pickup[29165]: 1FF493CCC3: uid=0 from= +Apr 1 10:12:02 Serenity postfix/cleanup[28418]: 1FF493CCC3: message-id=<20200401081202.1FF493CCC3@luxeylab.net> +Apr 1 10:12:02 Serenity postfix/qmgr[2066]: 1FF493CCC3: from=, size=642, nrcpt=1 (queue active) +Apr 1 10:12:02 Serenity postfix/local[28423]: 1FF493CCC3: to=, orig_to=, relay=local, delay=0.27, delays=0.16/0.03/0/0.08, dsn=2.0.0, status=sent (delivered to maildir) +Apr 1 10:12:02 Serenity postfix/qmgr[2066]: 1FF493CCC3: removed +Apr 1 10:13:40 Serenity postfix/smtpd[31504]: connect from unknown[185.234.219.82] +Apr 1 10:13:40 Serenity postfix/smtpd[31504]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 10:13:40 Serenity postfix/smtpd[31504]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 10:17:00 Serenity postfix/anvil[31518]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 10:13:40 +Apr 1 10:17:00 Serenity postfix/anvil[31518]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 10:13:40 +Apr 1 10:17:00 Serenity postfix/anvil[31518]: statistics: max cache size 1 at Apr 1 10:13:40 +Apr 1 10:22:06 Serenity postfix/smtpd[16074]: connect from unknown[185.234.219.82] +Apr 1 10:22:06 Serenity postfix/smtpd[16074]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 10:22:06 Serenity postfix/smtpd[16074]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 10:25:26 Serenity postfix/anvil[16076]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 10:22:06 +Apr 1 10:25:26 Serenity postfix/anvil[16076]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 10:22:06 +Apr 1 10:25:26 Serenity postfix/anvil[16076]: statistics: max cache size 1 at Apr 1 10:22:06 +Apr 1 10:30:41 Serenity postfix/smtpd[1101]: connect from unknown[185.234.219.82] +Apr 1 10:30:41 Serenity postfix/smtpd[1101]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 10:30:41 Serenity postfix/smtpd[1101]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 10:34:01 Serenity postfix/anvil[1107]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 10:30:41 +Apr 1 10:34:01 Serenity postfix/anvil[1107]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 10:30:41 +Apr 1 10:34:01 Serenity postfix/anvil[1107]: statistics: max cache size 1 at Apr 1 10:30:41 +Apr 1 10:39:16 Serenity postfix/smtpd[19155]: connect from unknown[185.234.219.82] +Apr 1 10:39:16 Serenity postfix/smtpd[19155]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 10:39:16 Serenity postfix/smtpd[19155]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 10:42:36 Serenity postfix/anvil[19157]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 10:39:16 +Apr 1 10:42:36 Serenity postfix/anvil[19157]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 10:39:16 +Apr 1 10:42:36 Serenity postfix/anvil[19157]: statistics: max cache size 1 at Apr 1 10:39:16 +Apr 1 10:47:24 Serenity postfix/smtpd[1650]: connect from unknown[45.143.223.115] +Apr 1 10:47:24 Serenity postfix/smtpd[1650]: NOQUEUE: reject: RCPT from unknown[45.143.223.115]: 454 4.7.1 : Relay access denied; from= to= proto=ESMTP helo= +Apr 1 10:47:24 Serenity postfix/smtpd[1650]: disconnect from unknown[45.143.223.115] ehlo=1 mail=1 rcpt=0/1 rset=1 quit=1 commands=4/5 +Apr 1 10:47:54 Serenity postfix/smtpd[1650]: connect from unknown[185.234.219.82] +Apr 1 10:47:54 Serenity postfix/smtpd[1650]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 10:47:54 Serenity postfix/smtpd[1650]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 10:51:15 Serenity postfix/anvil[1652]: statistics: max connection rate 1/60s for (smtp:45.143.223.115) at Apr 1 10:47:24 +Apr 1 10:51:15 Serenity postfix/anvil[1652]: statistics: max connection count 1 for (smtp:45.143.223.115) at Apr 1 10:47:24 +Apr 1 10:51:15 Serenity postfix/anvil[1652]: statistics: max cache size 2 at Apr 1 10:47:54 +Apr 1 10:56:33 Serenity postfix/smtpd[20182]: connect from unknown[185.234.219.82] +Apr 1 10:56:33 Serenity postfix/smtpd[20182]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 10:56:33 Serenity postfix/smtpd[20182]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 10:59:53 Serenity postfix/anvil[20190]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 10:56:33 +Apr 1 10:59:53 Serenity postfix/anvil[20190]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 10:56:33 +Apr 1 10:59:53 Serenity postfix/anvil[20190]: statistics: max cache size 1 at Apr 1 10:56:33 +Apr 1 11:05:14 Serenity postfix/smtpd[5030]: connect from unknown[185.234.219.82] +Apr 1 11:05:14 Serenity postfix/smtpd[5030]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 11:05:14 Serenity postfix/smtpd[5030]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 11:08:34 Serenity postfix/anvil[5032]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 11:05:14 +Apr 1 11:08:34 Serenity postfix/anvil[5032]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 11:05:14 +Apr 1 11:08:34 Serenity postfix/anvil[5032]: statistics: max cache size 1 at Apr 1 11:05:14 +Apr 1 11:12:02 Serenity postfix/pickup[29400]: 57B0E3CCC4: uid=0 from= +Apr 1 11:12:02 Serenity postfix/cleanup[18489]: 57B0E3CCC4: message-id=<20200401091202.57B0E3CCC4@luxeylab.net> +Apr 1 11:12:02 Serenity postfix/qmgr[2066]: 57B0E3CCC4: from=, size=642, nrcpt=1 (queue active) +Apr 1 11:12:02 Serenity postfix/local[18497]: 57B0E3CCC4: to=, orig_to=, relay=local, delay=0.31, delays=0.17/0.03/0/0.11, dsn=2.0.0, status=sent (delivered to maildir) +Apr 1 11:12:02 Serenity postfix/qmgr[2066]: 57B0E3CCC4: removed +Apr 1 11:13:51 Serenity postfix/smtpd[21768]: connect from unknown[185.234.219.82] +Apr 1 11:13:51 Serenity postfix/smtpd[21768]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 11:13:51 Serenity postfix/smtpd[21768]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 11:17:11 Serenity postfix/anvil[21770]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 11:13:51 +Apr 1 11:17:11 Serenity postfix/anvil[21770]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 11:13:51 +Apr 1 11:17:11 Serenity postfix/anvil[21770]: statistics: max cache size 1 at Apr 1 11:13:51 +Apr 1 11:22:30 Serenity postfix/smtpd[5724]: connect from unknown[185.234.219.82] +Apr 1 11:22:30 Serenity postfix/smtpd[5724]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 11:22:30 Serenity postfix/smtpd[5724]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 11:25:50 Serenity postfix/anvil[5726]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 11:22:30 +Apr 1 11:25:50 Serenity postfix/anvil[5726]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 11:22:30 +Apr 1 11:25:50 Serenity postfix/anvil[5726]: statistics: max cache size 1 at Apr 1 11:22:30 +Apr 1 11:31:06 Serenity postfix/smtpd[21579]: connect from unknown[185.234.219.82] +Apr 1 11:31:06 Serenity postfix/smtpd[21579]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 11:31:06 Serenity postfix/smtpd[21579]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 11:34:26 Serenity postfix/anvil[21581]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 11:31:06 +Apr 1 11:34:26 Serenity postfix/anvil[21581]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 11:31:06 +Apr 1 11:34:26 Serenity postfix/anvil[21581]: statistics: max cache size 1 at Apr 1 11:31:06 +Apr 1 11:39:35 Serenity postfix/smtpd[5634]: connect from unknown[185.234.219.82] +Apr 1 11:39:35 Serenity postfix/smtpd[5634]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 11:39:35 Serenity postfix/smtpd[5634]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 11:42:55 Serenity postfix/anvil[5636]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 11:39:35 +Apr 1 11:42:55 Serenity postfix/anvil[5636]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 11:39:35 +Apr 1 11:42:55 Serenity postfix/anvil[5636]: statistics: max cache size 1 at Apr 1 11:39:35 +Apr 1 11:48:10 Serenity postfix/smtpd[22169]: connect from unknown[185.234.219.82] +Apr 1 11:48:10 Serenity postfix/smtpd[22169]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 11:48:10 Serenity postfix/smtpd[22169]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 11:51:30 Serenity postfix/anvil[22171]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 11:48:10 +Apr 1 11:51:30 Serenity postfix/anvil[22171]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 11:48:10 +Apr 1 11:51:30 Serenity postfix/anvil[22171]: statistics: max cache size 1 at Apr 1 11:48:10 +Apr 1 11:56:49 Serenity postfix/smtpd[5810]: connect from unknown[185.234.219.82] +Apr 1 11:56:49 Serenity postfix/smtpd[5810]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 11:56:49 Serenity postfix/smtpd[5810]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 12:00:09 Serenity postfix/anvil[5812]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 11:56:49 +Apr 1 12:00:09 Serenity postfix/anvil[5812]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 11:56:49 +Apr 1 12:00:09 Serenity postfix/anvil[5812]: statistics: max cache size 1 at Apr 1 11:56:49 +Apr 1 12:05:26 Serenity postfix/smtpd[11666]: connect from unknown[185.234.219.82] +Apr 1 12:05:26 Serenity postfix/smtpd[11666]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 12:05:26 Serenity postfix/smtpd[11666]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 12:08:46 Serenity postfix/anvil[11668]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 12:05:26 +Apr 1 12:08:46 Serenity postfix/anvil[11668]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 12:05:26 +Apr 1 12:08:46 Serenity postfix/anvil[11668]: statistics: max cache size 1 at Apr 1 12:05:26 +Apr 1 12:12:02 Serenity postfix/pickup[29400]: 292843CCC5: uid=0 from= +Apr 1 12:12:02 Serenity postfix/cleanup[11905]: 292843CCC5: message-id=<20200401101202.292843CCC5@luxeylab.net> +Apr 1 12:12:02 Serenity postfix/qmgr[2066]: 292843CCC5: from=, size=642, nrcpt=1 (queue active) +Apr 1 12:12:02 Serenity postfix/local[11907]: 292843CCC5: to=, orig_to=, relay=local, delay=0.7, delays=0.44/0.04/0/0.22, dsn=2.0.0, status=sent (delivered to maildir) +Apr 1 12:12:02 Serenity postfix/qmgr[2066]: 292843CCC5: removed +Apr 1 12:13:58 Serenity postfix/smtpd[11933]: connect from unknown[185.234.219.82] +Apr 1 12:13:59 Serenity postfix/smtpd[11933]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 12:13:59 Serenity postfix/smtpd[11933]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 12:17:19 Serenity postfix/anvil[11935]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 12:13:58 +Apr 1 12:17:19 Serenity postfix/anvil[11935]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 12:13:58 +Apr 1 12:17:19 Serenity postfix/anvil[11935]: statistics: max cache size 1 at Apr 1 12:13:58 +Apr 1 12:22:31 Serenity postfix/smtpd[12058]: connect from unknown[185.234.219.82] +Apr 1 12:22:31 Serenity postfix/smtpd[12058]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 12:22:31 Serenity postfix/smtpd[12058]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 12:25:51 Serenity postfix/anvil[12060]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 12:22:31 +Apr 1 12:25:51 Serenity postfix/anvil[12060]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 12:22:31 +Apr 1 12:25:51 Serenity postfix/anvil[12060]: statistics: max cache size 1 at Apr 1 12:22:31 +Apr 1 12:31:10 Serenity postfix/smtpd[12192]: connect from unknown[185.234.219.82] +Apr 1 12:31:10 Serenity postfix/smtpd[12192]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 12:31:10 Serenity postfix/smtpd[12192]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 12:34:30 Serenity postfix/anvil[12194]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 12:31:10 +Apr 1 12:34:30 Serenity postfix/anvil[12194]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 12:31:10 +Apr 1 12:34:30 Serenity postfix/anvil[12194]: statistics: max cache size 1 at Apr 1 12:31:10 +Apr 1 12:39:49 Serenity postfix/smtpd[12422]: connect from unknown[185.234.219.82] +Apr 1 12:39:49 Serenity postfix/smtpd[12422]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 12:39:49 Serenity postfix/smtpd[12422]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 12:43:10 Serenity postfix/anvil[12424]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 12:39:49 +Apr 1 12:43:10 Serenity postfix/anvil[12424]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 12:39:49 +Apr 1 12:43:10 Serenity postfix/anvil[12424]: statistics: max cache size 1 at Apr 1 12:39:49 +Apr 1 12:48:22 Serenity postfix/smtpd[16412]: connect from unknown[185.234.219.82] +Apr 1 12:48:22 Serenity postfix/smtpd[16412]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 12:48:22 Serenity postfix/smtpd[16412]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 12:51:43 Serenity postfix/anvil[16414]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 12:48:22 +Apr 1 12:51:43 Serenity postfix/anvil[16414]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 12:48:22 +Apr 1 12:51:43 Serenity postfix/anvil[16414]: statistics: max cache size 1 at Apr 1 12:48:22 +Apr 1 12:56:59 Serenity postfix/smtpd[2455]: connect from unknown[185.234.219.82] +Apr 1 12:56:59 Serenity postfix/smtpd[2455]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 12:56:59 Serenity postfix/smtpd[2455]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 13:00:20 Serenity postfix/anvil[2457]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 12:56:59 +Apr 1 13:00:20 Serenity postfix/anvil[2457]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 12:56:59 +Apr 1 13:00:20 Serenity postfix/anvil[2457]: statistics: max cache size 1 at Apr 1 12:56:59 +Apr 1 13:05:40 Serenity postfix/smtpd[18773]: connect from unknown[185.234.219.82] +Apr 1 13:05:40 Serenity postfix/smtpd[18773]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 13:05:40 Serenity postfix/smtpd[18773]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 13:09:00 Serenity postfix/anvil[18775]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 13:05:40 +Apr 1 13:09:00 Serenity postfix/anvil[18775]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 13:05:40 +Apr 1 13:09:00 Serenity postfix/anvil[18775]: statistics: max cache size 1 at Apr 1 13:05:40 +Apr 1 13:12:01 Serenity postfix/pickup[12064]: E72F73CCC6: uid=0 from= +Apr 1 13:12:01 Serenity postfix/cleanup[30334]: E72F73CCC6: message-id=<20200401111201.E72F73CCC6@luxeylab.net> +Apr 1 13:12:02 Serenity postfix/qmgr[2066]: E72F73CCC6: from=, size=642, nrcpt=1 (queue active) +Apr 1 13:12:02 Serenity postfix/local[30336]: E72F73CCC6: to=, orig_to=, relay=local, delay=0.2, delays=0.15/0.03/0/0.02, dsn=2.0.0, status=sent (delivered to maildir) +Apr 1 13:12:02 Serenity postfix/qmgr[2066]: E72F73CCC6: removed +Apr 1 13:14:17 Serenity postfix/smtpd[2785]: connect from unknown[185.234.219.82] +Apr 1 13:14:18 Serenity postfix/smtpd[2785]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 13:14:18 Serenity postfix/smtpd[2785]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 13:17:38 Serenity postfix/anvil[2787]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 13:14:18 +Apr 1 13:17:38 Serenity postfix/anvil[2787]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 13:14:18 +Apr 1 13:17:38 Serenity postfix/anvil[2787]: statistics: max cache size 1 at Apr 1 13:14:18 +Apr 1 13:22:59 Serenity postfix/smtpd[19737]: connect from unknown[185.234.219.82] +Apr 1 13:22:59 Serenity postfix/smtpd[19737]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 13:22:59 Serenity postfix/smtpd[19737]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 13:26:19 Serenity postfix/anvil[19740]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 13:22:59 +Apr 1 13:26:19 Serenity postfix/anvil[19740]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 13:22:59 +Apr 1 13:26:19 Serenity postfix/anvil[19740]: statistics: max cache size 1 at Apr 1 13:22:59 +Apr 1 13:31:30 Serenity postfix/smtpd[4401]: connect from unknown[185.234.219.82] +Apr 1 13:31:30 Serenity postfix/smtpd[4401]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 13:31:30 Serenity postfix/smtpd[4401]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 13:33:24 Serenity postfix/smtpd[7328]: connect from ns3156019.ip-51-91-247.eu[51.91.247.125] +Apr 1 13:33:24 Serenity postfix/smtpd[7328]: lost connection after UNKNOWN from ns3156019.ip-51-91-247.eu[51.91.247.125] +Apr 1 13:33:24 Serenity postfix/smtpd[7328]: disconnect from ns3156019.ip-51-91-247.eu[51.91.247.125] unknown=0/2 commands=0/2 +Apr 1 13:36:44 Serenity postfix/anvil[4403]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 13:31:30 +Apr 1 13:36:44 Serenity postfix/anvil[4403]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 13:31:30 +Apr 1 13:36:44 Serenity postfix/anvil[4403]: statistics: max cache size 1 at Apr 1 13:31:30 +Apr 1 13:40:08 Serenity postfix/smtpd[20519]: connect from unknown[185.234.219.82] +Apr 1 13:40:08 Serenity postfix/smtpd[20519]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 13:40:08 Serenity postfix/smtpd[20519]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 13:43:28 Serenity postfix/anvil[20521]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 13:40:08 +Apr 1 13:43:28 Serenity postfix/anvil[20521]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 13:40:08 +Apr 1 13:43:28 Serenity postfix/anvil[20521]: statistics: max cache size 1 at Apr 1 13:40:08 +Apr 1 13:48:52 Serenity postfix/smtpd[23956]: connect from unknown[185.234.219.82] +Apr 1 13:48:52 Serenity postfix/smtpd[23956]: lost connection after AUTH from unknown[185.234.219.82] +Apr 1 13:48:52 Serenity postfix/smtpd[23956]: disconnect from unknown[185.234.219.82] ehlo=1 auth=0/1 commands=1/2 +Apr 1 13:52:12 Serenity postfix/anvil[23958]: statistics: max connection rate 1/60s for (smtp:185.234.219.82) at Apr 1 13:48:52 +Apr 1 13:52:12 Serenity postfix/anvil[23958]: statistics: max connection count 1 for (smtp:185.234.219.82) at Apr 1 13:48:52 +Apr 1 13:52:12 Serenity postfix/anvil[23958]: statistics: max cache size 1 at Apr 1 13:48:52 +Apr 1 14:12:02 Serenity postfix/pickup[24138]: 290B43CCC7: uid=0 from= +Apr 1 14:12:02 Serenity postfix/cleanup[24511]: 290B43CCC7: message-id=<20200401121202.290B43CCC7@luxeylab.net> +Apr 1 14:12:02 Serenity postfix/qmgr[2066]: 290B43CCC7: from=, size=642, nrcpt=1 (queue active) +Apr 1 14:12:02 Serenity postfix/local[24513]: 290B43CCC7: to=, orig_to=, relay=local, delay=0.33, delays=0.26/0.03/0/0.04, dsn=2.0.0, status=sent (delivered to maildir) +Apr 1 14:12:02 Serenity postfix/qmgr[2066]: 290B43CCC7: removed +Apr 1 14:38:14 Serenity postfix/smtpd[24908]: connect from 148-232-47-212.rev.cloud.scaleway.com[212.47.232.148] +Apr 1 14:38:14 Serenity postfix/smtpd[24908]: lost connection after CONNECT from 148-232-47-212.rev.cloud.scaleway.com[212.47.232.148] +Apr 1 14:38:14 Serenity postfix/smtpd[24908]: disconnect from 148-232-47-212.rev.cloud.scaleway.com[212.47.232.148] commands=0/0 +Apr 1 14:41:34 Serenity postfix/anvil[24910]: statistics: max connection rate 1/60s for (smtp:212.47.232.148) at Apr 1 14:38:14 +Apr 1 14:41:34 Serenity postfix/anvil[24910]: statistics: max connection count 1 for (smtp:212.47.232.148) at Apr 1 14:38:14 +Apr 1 14:41:34 Serenity postfix/anvil[24910]: statistics: max cache size 1 at Apr 1 14:38:14 +Apr 1 14:47:33 Serenity postfix/smtpd[25165]: connect from unknown[89.144.19.248] +Apr 1 14:47:33 Serenity postfix/smtpd[25165]: NOQUEUE: reject: RCPT from unknown[89.144.19.248]: 454 4.7.1 : Relay access denied; from=<1559431253@cwu.edu> to= proto=ESMTP helo= +Apr 1 14:47:33 Serenity postfix/smtpd[25165]: disconnect from unknown[89.144.19.248] ehlo=2 starttls=1 mail=1 rcpt=0/1 quit=1 commands=5/6 +Apr 1 14:50:53 Serenity postfix/anvil[25167]: statistics: max connection rate 1/60s for (smtp:89.144.19.248) at Apr 1 14:47:33 +Apr 1 14:50:53 Serenity postfix/anvil[25167]: statistics: max connection count 1 for (smtp:89.144.19.248) at Apr 1 14:47:33 +Apr 1 14:50:53 Serenity postfix/anvil[25167]: statistics: max cache size 1 at Apr 1 14:47:33 +Apr 1 15:12:01 Serenity postfix/pickup[24138]: 880263CCC8: uid=0 from= +Apr 1 15:12:01 Serenity postfix/cleanup[25748]: 880263CCC8: message-id=<20200401131201.880263CCC8@luxeylab.net> +Apr 1 15:12:01 Serenity postfix/qmgr[2066]: 880263CCC8: from=, size=642, nrcpt=1 (queue active) +Apr 1 15:12:01 Serenity postfix/local[25750]: 880263CCC8: to=, orig_to=, relay=local, delay=0.26, delays=0.19/0.03/0/0.03, dsn=2.0.0, status=sent (delivered to maildir) +Apr 1 15:12:01 Serenity postfix/qmgr[2066]: 880263CCC8: removed +Apr 1 16:12:02 Serenity postfix/pickup[26382]: 31AAF3CCC9: uid=0 from= +Apr 1 16:12:02 Serenity postfix/cleanup[26898]: 31AAF3CCC9: message-id=<20200401141202.31AAF3CCC9@luxeylab.net> +Apr 1 16:12:02 Serenity postfix/qmgr[2066]: 31AAF3CCC9: from=, size=642, nrcpt=1 (queue active) +Apr 1 16:12:02 Serenity postfix/local[26900]: 31AAF3CCC9: to=, orig_to=, relay=local, delay=0.23, delays=0.18/0.03/0/0.02, dsn=2.0.0, status=sent (delivered to maildir) +Apr 1 16:12:02 Serenity postfix/qmgr[2066]: 31AAF3CCC9: removed +Apr 1 16:14:25 Serenity postfix/smtpd[26924]: connect from unknown[193.56.28.88] +Apr 1 16:14:25 Serenity postfix/smtpd[26924]: disconnect from unknown[193.56.28.88] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4 +Apr 1 16:15:34 Serenity postfix/smtpd[26924]: connect from unknown[193.56.28.88] +Apr 1 16:15:35 Serenity postfix/smtpd[26924]: disconnect from unknown[193.56.28.88] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4 +Apr 1 16:18:55 Serenity postfix/anvil[26926]: statistics: max connection rate 1/60s for (smtp:193.56.28.88) at Apr 1 16:14:25 +Apr 1 16:18:55 Serenity postfix/anvil[26926]: statistics: max connection count 1 for (smtp:193.56.28.88) at Apr 1 16:14:25 +Apr 1 16:18:55 Serenity postfix/anvil[26926]: statistics: max cache size 1 at Apr 1 16:14:25 +Apr 1 16:35:17 Serenity postfix/smtpd[27285]: connect from unknown[193.56.28.88] +Apr 1 16:35:17 Serenity postfix/smtpd[27285]: disconnect from unknown[193.56.28.88] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4 +Apr 1 16:38:38 Serenity postfix/anvil[27287]: statistics: max connection rate 1/60s for (smtp:193.56.28.88) at Apr 1 16:35:17 +Apr 1 16:38:38 Serenity postfix/anvil[27287]: statistics: max connection count 1 for (smtp:193.56.28.88) at Apr 1 16:35:17 +Apr 1 16:38:38 Serenity postfix/anvil[27287]: statistics: max cache size 1 at Apr 1 16:35:17 +Apr 1 17:12:01 Serenity postfix/pickup[26382]: CE4BE3CCCA: uid=0 from= +Apr 1 17:12:01 Serenity postfix/cleanup[28011]: CE4BE3CCCA: message-id=<20200401151201.CE4BE3CCCA@luxeylab.net> +Apr 1 17:12:01 Serenity postfix/qmgr[2066]: CE4BE3CCCA: from=, size=642, nrcpt=1 (queue active) +Apr 1 17:12:01 Serenity postfix/local[28013]: CE4BE3CCCA: to=, orig_to=, relay=local, delay=0.2, delays=0.14/0.03/0/0.03, dsn=2.0.0, status=sent (delivered to maildir) +Apr 1 17:12:02 Serenity postfix/qmgr[2066]: CE4BE3CCCA: removed +Apr 1 18:12:02 Serenity postfix/pickup[28062]: 1F9493CCCB: uid=0 from= +Apr 1 18:12:02 Serenity postfix/cleanup[28941]: 1F9493CCCB: message-id=<20200401161202.1F9493CCCB@luxeylab.net> +Apr 1 18:12:02 Serenity postfix/qmgr[2066]: 1F9493CCCB: from=, size=642, nrcpt=1 (queue active) +Apr 1 18:12:02 Serenity postfix/local[28943]: 1F9493CCCB: to=, orig_to=, relay=local, delay=0.47, delays=0.4/0.02/0/0.05, dsn=2.0.0, status=sent (delivered to maildir) +Apr 1 18:12:02 Serenity postfix/qmgr[2066]: 1F9493CCCB: removed +Apr 1 19:12:01 Serenity postfix/pickup[29608]: 737DF3CCCC: uid=0 from= +Apr 1 19:12:01 Serenity postfix/cleanup[29962]: 737DF3CCCC: message-id=<20200401171201.737DF3CCCC@luxeylab.net> +Apr 1 19:12:01 Serenity postfix/qmgr[2066]: 737DF3CCCC: from=, size=642, nrcpt=1 (queue active) +Apr 1 19:12:01 Serenity postfix/local[29964]: 737DF3CCCC: to=, orig_to=, relay=local, delay=0.2, delays=0.13/0.03/0/0.04, dsn=2.0.0, status=sent (delivered to maildir) +Apr 1 19:12:01 Serenity postfix/qmgr[2066]: 737DF3CCCC: removed +Apr 1 20:12:02 Serenity postfix/pickup[29608]: 209C43CCCD: uid=0 from= +Apr 1 20:12:02 Serenity postfix/cleanup[31065]: 209C43CCCD: message-id=<20200401181202.209C43CCCD@luxeylab.net> +Apr 1 20:12:02 Serenity postfix/qmgr[2066]: 209C43CCCD: from=, size=642, nrcpt=1 (queue active) +Apr 1 20:12:02 Serenity postfix/local[31067]: 209C43CCCD: to=, orig_to=, relay=local, delay=0.3, delays=0.22/0.03/0/0.05, dsn=2.0.0, status=sent (delivered to maildir) +Apr 1 20:12:02 Serenity postfix/qmgr[2066]: 209C43CCCD: removed +Apr 1 21:12:01 Serenity postfix/pickup[31412]: 969B43CCCE: uid=0 from= +Apr 1 21:12:01 Serenity postfix/cleanup[32418]: 969B43CCCE: message-id=<20200401191201.969B43CCCE@luxeylab.net> +Apr 1 21:12:01 Serenity postfix/qmgr[2066]: 969B43CCCE: from=, size=642, nrcpt=1 (queue active) +Apr 1 21:12:01 Serenity postfix/local[32420]: 969B43CCCE: to=, orig_to=, relay=local, delay=0.21, delays=0.13/0.03/0/0.05, dsn=2.0.0, status=sent (delivered to maildir) +Apr 1 21:12:01 Serenity postfix/qmgr[2066]: 969B43CCCE: removed +Apr 1 22:12:02 Serenity postfix/pickup[31412]: 0306E3CCCF: uid=0 from= +Apr 1 22:12:02 Serenity postfix/cleanup[1340]: 0306E3CCCF: message-id=<20200401201202.0306E3CCCF@luxeylab.net> +Apr 1 22:12:02 Serenity postfix/qmgr[2066]: 0306E3CCCF: from=, size=642, nrcpt=1 (queue active) +Apr 1 22:12:02 Serenity postfix/local[1342]: 0306E3CCCF: to=, orig_to=, relay=local, delay=0.24, delays=0.2/0.03/0/0, dsn=2.0.0, status=sent (delivered to maildir) +Apr 1 22:12:02 Serenity postfix/qmgr[2066]: 0306E3CCCF: removed +Apr 1 23:12:01 Serenity postfix/pickup[1357]: 969C93CCD0: uid=0 from= +Apr 1 23:12:01 Serenity postfix/cleanup[2749]: 969C93CCD0: message-id=<20200401211201.969C93CCD0@luxeylab.net> +Apr 1 23:12:01 Serenity postfix/qmgr[2066]: 969C93CCD0: from=, size=642, nrcpt=1 (queue active) +Apr 1 23:12:01 Serenity postfix/local[2751]: 969C93CCD0: to=, orig_to=, relay=local, delay=0.19, delays=0.14/0.02/0/0.03, dsn=2.0.0, status=sent (delivered to maildir) +Apr 1 23:12:01 Serenity postfix/qmgr[2066]: 969C93CCD0: removed +Apr 2 00:08:48 Serenity postfix/smtpd[3946]: connect from unknown[185.234.217.48] +Apr 2 00:08:48 Serenity postfix/smtpd[3946]: lost connection after AUTH from unknown[185.234.217.48] +Apr 2 00:08:48 Serenity postfix/smtpd[3946]: disconnect from unknown[185.234.217.48] ehlo=1 auth=0/1 commands=1/2 +Apr 2 00:12:02 Serenity postfix/pickup[3672]: 20B6B3CCD1: uid=0 from= +Apr 2 00:12:02 Serenity postfix/cleanup[4190]: 20B6B3CCD1: message-id=<20200401221202.20B6B3CCD1@luxeylab.net> +Apr 2 00:12:02 Serenity postfix/qmgr[2066]: 20B6B3CCD1: from=, size=642, nrcpt=1 (queue active) +Apr 2 00:12:02 Serenity postfix/local[4192]: 20B6B3CCD1: to=, orig_to=, relay=local, delay=0.26, delays=0.2/0.02/0/0.04, dsn=2.0.0, status=sent (delivered to maildir) +Apr 2 00:12:02 Serenity postfix/qmgr[2066]: 20B6B3CCD1: removed +Apr 2 00:12:08 Serenity postfix/anvil[3948]: statistics: max connection rate 1/60s for (smtp:185.234.217.48) at Apr 2 00:08:48 +Apr 2 00:12:08 Serenity postfix/anvil[3948]: statistics: max connection count 1 for (smtp:185.234.217.48) at Apr 2 00:08:48 +Apr 2 00:12:08 Serenity postfix/anvil[3948]: statistics: max cache size 1 at Apr 2 00:08:48 +Apr 2 01:03:11 Serenity postfix/smtpd[5225]: connect from unknown[193.56.28.88] +Apr 2 01:03:11 Serenity postfix/smtpd[5225]: disconnect from unknown[193.56.28.88] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4 +Apr 2 01:04:47 Serenity postfix/smtpd[5225]: connect from unknown[193.56.28.88] +Apr 2 01:04:47 Serenity postfix/smtpd[5225]: disconnect from unknown[193.56.28.88] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4 +Apr 2 01:08:07 Serenity postfix/anvil[5227]: statistics: max connection rate 1/60s for (smtp:193.56.28.88) at Apr 2 01:03:11 +Apr 2 01:08:07 Serenity postfix/anvil[5227]: statistics: max connection count 1 for (smtp:193.56.28.88) at Apr 2 01:03:11 +Apr 2 01:08:07 Serenity postfix/anvil[5227]: statistics: max cache size 1 at Apr 2 01:03:11 +Apr 2 01:12:01 Serenity postfix/pickup[3672]: BE2F33CCD2: uid=0 from= +Apr 2 01:12:01 Serenity postfix/cleanup[5528]: BE2F33CCD2: message-id=<20200401231201.BE2F33CCD2@luxeylab.net> +Apr 2 01:12:01 Serenity postfix/qmgr[2066]: BE2F33CCD2: from=, size=642, nrcpt=1 (queue active) +Apr 2 01:12:01 Serenity postfix/local[5530]: BE2F33CCD2: to=, orig_to=, relay=local, delay=0.25, delays=0.22/0.03/0/0, dsn=2.0.0, status=sent (delivered to maildir) +Apr 2 01:12:01 Serenity postfix/qmgr[2066]: BE2F33CCD2: removed +Apr 2 01:13:55 Serenity postfix/smtpd[5555]: connect from unknown[193.56.28.88] +Apr 2 01:13:55 Serenity postfix/smtpd[5555]: disconnect from unknown[193.56.28.88] ehlo=1 auth=0/1 rset=1 quit=1 commands=3/4 +Apr 2 01:17:15 Serenity postfix/anvil[5557]: statistics: max connection rate 1/60s for (smtp:193.56.28.88) at Apr 2 01:13:55 +Apr 2 01:17:15 Serenity postfix/anvil[5557]: statistics: max connection count 1 for (smtp:193.56.28.88) at Apr 2 01:13:55 +Apr 2 01:17:15 Serenity postfix/anvil[5557]: statistics: max cache size 1 at Apr 2 01:13:55 +Apr 2 02:12:02 Serenity postfix/pickup[5854]: 1D1833CCD3: uid=0 from= +Apr 2 02:12:02 Serenity postfix/cleanup[6820]: 1D1833CCD3: message-id=<20200402001202.1D1833CCD3@luxeylab.net> +Apr 2 02:12:02 Serenity postfix/qmgr[2066]: 1D1833CCD3: from=, size=642, nrcpt=1 (queue active) +Apr 2 02:12:02 Serenity postfix/local[6822]: 1D1833CCD3: to=, orig_to=, relay=local, delay=0.22, delays=0.12/0.02/0/0.08, dsn=2.0.0, status=sent (delivered to maildir) +Apr 2 02:12:02 Serenity postfix/qmgr[2066]: 1D1833CCD3: removed +Apr 2 02:13:50 Serenity postfix/smtpd[6849]: connect from vm1078314.had.tf[80.89.238.100] +Apr 2 02:13:50 Serenity postfix/smtpd[6849]: NOQUEUE: reject: RCPT from vm1078314.had.tf[80.89.238.100]: 454 4.7.1 : Relay access denied; from= to= proto=ESMTP helo= +Apr 2 02:13:50 Serenity postfix/smtpd[6849]: disconnect from vm1078314.had.tf[80.89.238.100] ehlo=1 mail=1 rcpt=0/1 rset=1 quit=1 commands=4/5 +Apr 2 02:17:10 Serenity postfix/anvil[6851]: statistics: max connection rate 1/60s for (smtp:80.89.238.100) at Apr 2 02:13:50 +Apr 2 02:17:10 Serenity postfix/anvil[6851]: statistics: max connection count 1 for (smtp:80.89.238.100) at Apr 2 02:13:50 +Apr 2 02:17:10 Serenity postfix/anvil[6851]: statistics: max cache size 1 at Apr 2 02:13:50 +Apr 2 03:12:01 Serenity postfix/pickup[8085]: 7F16E3CCD4: uid=0 from= +Apr 2 03:12:01 Serenity postfix/cleanup[8156]: 7F16E3CCD4: message-id=<20200402011201.7F16E3CCD4@luxeylab.net> +Apr 2 03:12:01 Serenity postfix/qmgr[2066]: 7F16E3CCD4: from=, size=642, nrcpt=1 (queue active) +Apr 2 03:12:01 Serenity postfix/local[8158]: 7F16E3CCD4: to=, orig_to=, relay=local, delay=0.25, delays=0.2/0.03/0/0.01, dsn=2.0.0, status=sent (delivered to maildir) +Apr 2 03:12:01 Serenity postfix/qmgr[2066]: 7F16E3CCD4: removed +Apr 2 04:12:02 Serenity postfix/pickup[8085]: D36813CCD5: uid=0 from= +Apr 2 04:12:02 Serenity postfix/cleanup[9360]: D36813CCD5: message-id=<20200402021201.D36813CCD5@luxeylab.net> +Apr 2 04:12:02 Serenity postfix/qmgr[2066]: D36813CCD5: from=, size=642, nrcpt=1 (queue active) +Apr 2 04:12:02 Serenity postfix/local[9362]: D36813CCD5: to=, orig_to=, relay=local, delay=0.41, delays=0.35/0.02/0/0.03, dsn=2.0.0, status=sent (delivered to maildir) +Apr 2 04:12:02 Serenity postfix/qmgr[2066]: D36813CCD5: removed +Apr 2 05:02:21 Serenity postfix/smtpd[10169]: connect from ec2-13-52-249-60.us-west-1.compute.amazonaws.com[13.52.249.60] +Apr 2 05:02:33 Serenity postfix/smtpd[10169]: lost connection after EHLO from ec2-13-52-249-60.us-west-1.compute.amazonaws.com[13.52.249.60] +Apr 2 05:02:33 Serenity postfix/smtpd[10169]: disconnect from ec2-13-52-249-60.us-west-1.compute.amazonaws.com[13.52.249.60] ehlo=2 starttls=1 commands=3 +Apr 2 05:05:53 Serenity postfix/anvil[10171]: statistics: max connection rate 1/60s for (smtp:13.52.249.60) at Apr 2 05:02:21 +Apr 2 05:05:53 Serenity postfix/anvil[10171]: statistics: max connection count 1 for (smtp:13.52.249.60) at Apr 2 05:02:21 +Apr 2 05:05:53 Serenity postfix/anvil[10171]: statistics: max cache size 1 at Apr 2 05:02:21 +Apr 2 05:12:01 Serenity postfix/pickup[9977]: 6FF9E3CCD6: uid=0 from= +Apr 2 05:12:01 Serenity postfix/cleanup[10452]: 6FF9E3CCD6: message-id=<20200402031201.6FF9E3CCD6@luxeylab.net> +Apr 2 05:12:01 Serenity postfix/qmgr[2066]: 6FF9E3CCD6: from=, size=642, nrcpt=1 (queue active) +Apr 2 05:12:01 Serenity postfix/local[10456]: 6FF9E3CCD6: to=, orig_to=, relay=local, delay=0.28, delays=0.21/0.03/0/0.04, dsn=2.0.0, status=sent (delivered to maildir) +Apr 2 05:12:01 Serenity postfix/qmgr[2066]: 6FF9E3CCD6: removed +Apr 2 06:12:01 Serenity postfix/pickup[9977]: E81883CCD7: uid=0 from= +Apr 2 06:12:02 Serenity postfix/cleanup[11644]: E81883CCD7: message-id=<20200402041201.E81883CCD7@luxeylab.net> +Apr 2 06:12:02 Serenity postfix/qmgr[2066]: E81883CCD7: from=, size=642, nrcpt=1 (queue active) +Apr 2 06:12:02 Serenity postfix/local[11646]: E81883CCD7: to=, orig_to=, relay=local, delay=0.62, delays=0.48/0.03/0/0.11, dsn=2.0.0, status=sent (delivered to maildir) +Apr 2 06:12:02 Serenity postfix/qmgr[2066]: E81883CCD7: removed +Apr 2 07:12:02 Serenity postfix/pickup[11867]: D796F3CCD8: uid=0 from= +Apr 2 07:12:02 Serenity postfix/cleanup[12996]: D796F3CCD8: message-id=<20200402051202.D796F3CCD8@luxeylab.net> +Apr 2 07:12:02 Serenity postfix/qmgr[2066]: D796F3CCD8: from=, size=642, nrcpt=1 (queue active) +Apr 2 07:12:03 Serenity postfix/local[12998]: D796F3CCD8: to=, orig_to=, relay=local, delay=0.8, delays=0.74/0.03/0/0.03, dsn=2.0.0, status=sent (delivered to maildir) +Apr 2 07:12:03 Serenity postfix/qmgr[2066]: D796F3CCD8: removed +Apr 2 07:13:51 Serenity postfix/smtpd[13021]: connect from unknown[71.6.232.5] +Apr 2 07:13:52 Serenity postfix/smtpd[13021]: disconnect from unknown[71.6.232.5] ehlo=1 quit=1 commands=2 +Apr 2 07:17:12 Serenity postfix/anvil[13023]: statistics: max connection rate 1/60s for (smtp:71.6.232.5) at Apr 2 07:13:51 +Apr 2 07:17:12 Serenity postfix/anvil[13023]: statistics: max connection count 1 for (smtp:71.6.232.5) at Apr 2 07:13:51 +Apr 2 07:17:12 Serenity postfix/anvil[13023]: statistics: max cache size 1 at Apr 2 07:13:51 +Apr 2 08:06:37 Serenity postfix/smtpd[2647]: connect from unknown[172.27.1.2] +Apr 2 08:06:37 Serenity postfix/smtpd[2647]: NOQUEUE: reject: RCPT from unknown[172.27.1.2]: 454 4.7.1 : Relay access denied; from= to= proto=ESMTP helo= +Apr 2 08:06:37 Serenity postfix/smtpd[2647]: lost connection after DATA from unknown[172.27.1.2] +Apr 2 08:06:37 Serenity postfix/smtpd[2647]: disconnect from unknown[172.27.1.2] ehlo=1 mail=1 rcpt=0/1 data=0/1 commands=2/4 +Apr 2 08:08:12 Serenity postfix/smtpd[2647]: connect from unknown[172.27.1.2] +Apr 2 08:08:12 Serenity postfix/smtpd[2647]: 6BA723CCD8: client=unknown[172.27.1.2] +Apr 2 08:08:12 Serenity postfix/cleanup[5829]: 6BA723CCD8: message-id=<> +Apr 2 08:08:12 Serenity postfix/smtpd[2647]: disconnect from unknown[172.27.1.2] ehlo=1 mail=1 rcpt=1 data=1 quit=1 commands=5 +Apr 2 08:08:12 Serenity postfix/qmgr[2066]: 6BA723CCD8: from=, size=290, nrcpt=1 (queue active) +Apr 2 08:08:13 Serenity postfix/smtp[5831]: 6BA723CCD8: to=, orig_to=, relay=gmail-smtp-in.l.google.com[74.125.133.26]:25, delay=0.79, delays=0.23/0.03/0.11/0.42, dsn=2.0.0, status=sent (250 2.0.0 OK 1585807693 130si4035771wma.123 - gsmtp) +Apr 2 08:08:13 Serenity postfix/qmgr[2066]: 6BA723CCD8: removed +Apr 2 08:11:32 Serenity postfix/anvil[2661]: statistics: max connection rate 1/60s for (smtp:172.27.1.2) at Apr 2 08:06:37 +Apr 2 08:11:32 Serenity postfix/anvil[2661]: statistics: max connection count 1 for (smtp:172.27.1.2) at Apr 2 08:06:37 +Apr 2 08:11:32 Serenity postfix/anvil[2661]: statistics: max cache size 1 at Apr 2 08:06:37 +Apr 2 08:12:04 Serenity postfix/pickup[31232]: 660463CCD9: uid=0 from= +Apr 2 08:12:04 Serenity postfix/cleanup[13489]: 660463CCD9: message-id=<20200402061204.660463CCD9@luxeylab.net> +Apr 2 08:12:04 Serenity postfix/qmgr[2066]: 660463CCD9: from=, size=642, nrcpt=1 (queue active) +Apr 2 08:12:04 Serenity postfix/local[13511]: 660463CCD9: to=, orig_to=, relay=local, delay=0.33, delays=0.22/0.05/0/0.06, dsn=2.0.0, status=sent (delivered to maildir) +Apr 2 08:12:04 Serenity postfix/qmgr[2066]: 660463CCD9: removed +Apr 2 08:49:23 Serenity postfix/smtpd[19952]: connect from unknown[172.27.1.2] +Apr 2 08:49:23 Serenity postfix/smtpd[19952]: NOQUEUE: reject: RCPT from unknown[172.27.1.2]: 454 4.7.1 : Relay access denied; from= to= proto=ESMTP helo= +Apr 2 08:49:23 Serenity postfix/smtpd[19952]: lost connection after DATA from unknown[172.27.1.2] +Apr 2 08:49:23 Serenity postfix/smtpd[19952]: disconnect from unknown[172.27.1.2] ehlo=1 mail=1 rcpt=0/1 data=0/1 commands=2/4 +Apr 2 08:51:07 Serenity postfix/pickup[31232]: C4F4B3CCDA: uid=1000 from= +Apr 2 08:51:07 Serenity postfix/cleanup[23468]: C4F4B3CCDA: message-id=<20200402065107.C4F4B3CCDA@luxeylab.net> +Apr 2 08:51:07 Serenity postfix/qmgr[2066]: C4F4B3CCDA: from=, size=290, nrcpt=1 (queue active) +Apr 2 08:51:08 Serenity postfix/smtp[23491]: C4F4B3CCDA: to=, relay=gmail-smtp-in.l.google.com[74.125.133.26]:25, delay=0.81, delays=0.2/0.03/0.07/0.51, dsn=2.0.0, status=sent (250 2.0.0 OK 1585810268 y124si4106794wmg.68 - gsmtp) +Apr 2 08:51:08 Serenity postfix/qmgr[2066]: C4F4B3CCDA: removed +Apr 2 08:52:43 Serenity postfix/anvil[19954]: statistics: max connection rate 1/60s for (smtp:172.27.1.2) at Apr 2 08:49:23 +Apr 2 08:52:43 Serenity postfix/anvil[19954]: statistics: max connection count 1 for (smtp:172.27.1.2) at Apr 2 08:49:23 +Apr 2 08:52:43 Serenity postfix/anvil[19954]: statistics: max cache size 1 at Apr 2 08:49:23 +Apr 2 09:02:06 Serenity postfix/smtpd[11166]: connect from unknown[172.27.1.2] +Apr 2 09:02:06 Serenity postfix/smtpd[11166]: NOQUEUE: reject: RCPT from unknown[172.27.1.2]: 454 4.7.1 : Relay access denied; from= to= proto=ESMTP helo= +Apr 2 09:02:06 Serenity postfix/smtpd[11166]: lost connection after DATA from unknown[172.27.1.2] +Apr 2 09:02:06 Serenity postfix/smtpd[11166]: disconnect from unknown[172.27.1.2] ehlo=1 mail=1 rcpt=0/1 data=0/1 commands=2/4 +Apr 2 09:02:40 Serenity postfix/smtpd[11166]: connect from unknown[172.27.1.2] +Apr 2 09:02:40 Serenity postfix/smtpd[11166]: 660623CCD9: client=unknown[172.27.1.2] +Apr 2 09:02:40 Serenity postfix/cleanup[12272]: 660623CCD9: message-id=<> +Apr 2 09:02:40 Serenity postfix/smtpd[11166]: disconnect from unknown[172.27.1.2] ehlo=1 mail=1 rcpt=1 data=1 quit=1 commands=5 +Apr 2 09:02:40 Serenity postfix/qmgr[2066]: 660623CCD9: from=, size=290, nrcpt=1 (queue active) +Apr 2 09:02:41 Serenity postfix/smtp[12274]: 660623CCD9: to=, orig_to=, relay=gmail-smtp-in.l.google.com[2a00:1450:400c:c07::1b]:25, delay=0.79, delays=0.19/0.03/0.13/0.43, dsn=2.0.0, status=sent (250 2.0.0 OK 1585810961 u10si4048491wrq.421 - gsmtp) +Apr 2 09:02:41 Serenity postfix/qmgr[2066]: 660623CCD9: removed +Apr 2 09:06:00 Serenity postfix/anvil[11176]: statistics: max connection rate 2/60s for (smtp:172.27.1.2) at Apr 2 09:02:40 +Apr 2 09:06:00 Serenity postfix/anvil[11176]: statistics: max connection count 1 for (smtp:172.27.1.2) at Apr 2 09:02:06 +Apr 2 09:06:00 Serenity postfix/anvil[11176]: statistics: max cache size 1 at Apr 2 09:02:06 +Apr 2 09:07:56 Serenity postfix/smtpd[22617]: connect from unknown[172.27.1.2] +Apr 2 09:07:56 Serenity postfix/smtpd[22617]: NOQUEUE: reject: RCPT from unknown[172.27.1.2]: 454 4.7.1 : Relay access denied; from= to= proto=ESMTP helo= +Apr 2 09:07:56 Serenity postfix/smtpd[22617]: lost connection after DATA from unknown[172.27.1.2] +Apr 2 09:07:56 Serenity postfix/smtpd[22617]: disconnect from unknown[172.27.1.2] ehlo=1 mail=1 rcpt=0/1 data=0/1 commands=2/4 +Apr 2 09:10:15 Serenity postfix/pickup[31232]: D60733CCDA: uid=1000 from= +Apr 2 09:10:15 Serenity postfix/cleanup[27364]: D60733CCDA: message-id=<20200402071015.D60733CCDA@luxeylab.net> +Apr 2 09:10:16 Serenity postfix/qmgr[2066]: D60733CCDA: from=, size=290, nrcpt=1 (queue active) +Apr 2 09:10:16 Serenity postfix/smtp[27366]: D60733CCDA: to=, relay=gmail-smtp-in.l.google.com[2a00:1450:400c:c07::1b]:25, delay=0.62, delays=0.21/0.04/0.1/0.27, dsn=2.0.0, status=sent (250 2.0.0 OK 1585811416 a21si4160625wmj.49 - gsmtp) +Apr 2 09:10:16 Serenity postfix/qmgr[2066]: D60733CCDA: removed +Apr 2 09:10:33 Serenity postfix/pickup[31232]: 5DB1D3CCDA: uid=1000 from= +Apr 2 09:10:33 Serenity postfix/cleanup[27364]: 5DB1D3CCDA: message-id=<20200402071033.5DB1D3CCDA@luxeylab.net> +Apr 2 09:10:33 Serenity postfix/qmgr[2066]: 5DB1D3CCDA: from=, size=286, nrcpt=1 (queue active) +Apr 2 09:10:33 Serenity postfix/smtp[27366]: 5DB1D3CCDA: to=, relay=smtp.yopmail.com[87.98.164.155]:25, delay=0.68, delays=0.35/0/0.23/0.09, dsn=2.0.0, status=sent (250 mail saved) +Apr 2 09:10:33 Serenity postfix/qmgr[2066]: 5DB1D3CCDA: removed +Apr 2 09:11:16 Serenity postfix/anvil[22619]: statistics: max connection rate 1/60s for (smtp:172.27.1.2) at Apr 2 09:07:56 +Apr 2 09:11:16 Serenity postfix/anvil[22619]: statistics: max connection count 1 for (smtp:172.27.1.2) at Apr 2 09:07:56 +Apr 2 09:11:16 Serenity postfix/anvil[22619]: statistics: max cache size 1 at Apr 2 09:07:56 +Apr 2 09:12:02 Serenity postfix/pickup[31232]: 596763CCDA: uid=0 from= +Apr 2 09:12:02 Serenity postfix/cleanup[27364]: 596763CCDA: message-id=<20200402071202.596763CCDA@luxeylab.net> +Apr 2 09:12:02 Serenity postfix/qmgr[2066]: 596763CCDA: from=, size=642, nrcpt=1 (queue active) +Apr 2 09:12:02 Serenity postfix/local[30844]: 596763CCDA: to=, orig_to=, relay=local, delay=0.19, delays=0.11/0.04/0/0.04, dsn=2.0.0, status=sent (delivered to maildir) +Apr 2 09:12:02 Serenity postfix/qmgr[2066]: 596763CCDA: removed diff --git a/ansible/roles/build/tasks/main.yml b/ansible/roles/build/tasks/main.yml index 5200a4c..052bb53 100644 --- a/ansible/roles/build/tasks/main.yml +++ b/ansible/roles/build/tasks/main.yml @@ -4,6 +4,7 @@ include_tasks: wordpress.yml loop: "{{ sites }}" when: item.type == "wordpress" + tags: wordpress diff --git a/ansible/roles/build/tasks/wordpress.yml b/ansible/roles/build/tasks/wordpress.yml index 8e81802..5566d64 100644 --- a/ansible/roles/build/tasks/wordpress.yml +++ b/ansible/roles/build/tasks/wordpress.yml @@ -25,7 +25,21 @@ # https://docs.ansible.com/ansible/latest/modules/acme_certificate_module.html#acme-certificate-module # https://www.digitalocean.com/community/tutorials/how-to-acquire-a-let-s-encrypt-certificate-using-ansible-on-ubuntu-18-04 # Maybe using shell directly? e.g. -# $ certbot certonly --webroot -w /var/www/letsencrypt -d {{ item.url }} +# certbot certonly --webroot -w /var/www/letsencrypt -d - -- name: Add user to database \ No newline at end of file +# MySQL equivalent: +# create user @ identified by ; +# grant all on .* to @; +- name: "Add database user {{ item.mysql_username }}@{{ item.subnet_site_ip }} and grant all privileges on {{ item.mysql_database }}" + mysql_user: + # Credentials to log in MySQL + login_host: localhost + login_user: root + login_password: "{{ mysql_root_password }}" + # Credentials of the new db user + host: "{{ item.subnet_site_ip }}" + name: "{{ item.mysql_username }}" + password: "{{ item.mysql_password }}" + # Grants + priv: "{{ item.mysql_database }}.*:all" + state: present diff --git a/ansible/roles/build/templates/docker-compose.yml.j2 b/ansible/roles/build/templates/docker-compose.yml.j2 index 675b3e8..8511983 100644 --- a/ansible/roles/build/templates/docker-compose.yml.j2 +++ b/ansible/roles/build/templates/docker-compose.yml.j2 @@ -12,8 +12,8 @@ services: WORDPRESS_DB_USER: "{{ item.mysql_username }}" WORDPRESS_DB_PASSWORD: "{{ item.mysql_password }}" WORDPRESS_DB_NAME: "{{ item.mysql_database }}" -# volumes: -# - "{{ www_path }}/{{ item.slug }}_wp-content:/var/www/html/wp-content" + volumes: + - "{{ www_path }}/{{ item.slug }}_wp-content:/var/www/html/wp-content" networks: net: ipv4_address: "{{ item.subnet_site_ip }}" diff --git a/ansible/roles/build/templates/nginx-wordpress.j2 b/ansible/roles/build/templates/nginx-wordpress.j2 index 6e98280..6fa86f7 100644 --- a/ansible/roles/build/templates/nginx-wordpress.j2 +++ b/ansible/roles/build/templates/nginx-wordpress.j2 @@ -4,24 +4,40 @@ server { listen 80; listen [::]:80; - server_name {{ item.url }}; + server_name {{ item.url }} www.{{ item.url }}; # Let's Encrypt include snippets/letsencrypt.conf; location / { - return 301 https://$server_name$request_uri; +{% if item.redirect_to_www %} + return 301 https://www.{{ item.url }}$request_uri; +{% else %} + return 301 https://{{ item.url }}$request_uri; +{% endif %} } } server { listen 443 ssl; listen [::]:443 ssl; - server_name {{ item.url }}; + server_name {{ item.url }} www.{{ item.url }}; access_log /var/log/nginx/{{ item.slug }}-access.log; error_log /var/log/nginx/error.log; +{% if item.redirect_to_www %} + # Redirect non-www to www + if ($host = {{ item.url }}) { + rewrite ^ https://www.{{ item.url }}$request_uri permanent; + } +{% else %} + # Redirect www to non-www + if ($host = www.{{ item.url }}) { + rewrite ^ https://{{ item.url }}$request_uri permanent; + } +{% endif %} + # Let's Encrypt include snippets/letsencrypt.conf; diff --git a/ansible/roles/deploy/tasks/main.yml b/ansible/roles/deploy/tasks/main.yml new file mode 100644 index 0000000..cb3463e --- /dev/null +++ b/ansible/roles/deploy/tasks/main.yml @@ -0,0 +1,7 @@ +--- + +- name: Deploy Wordpress sites + include_tasks: wordpress.yml + loop: "{{ sites }}" + when: item.type == "wordpress" + tags: wordpress \ No newline at end of file diff --git a/ansible/roles/deploy/tasks/wordpress.yml b/ansible/roles/deploy/tasks/wordpress.yml new file mode 100644 index 0000000..88e93f6 --- /dev/null +++ b/ansible/roles/deploy/tasks/wordpress.yml @@ -0,0 +1,23 @@ +- name: "Launch the site's containers" + docker_compose: + project_src: "{{ sites_path }}/{{ item.slug }}" + state: present + build: yes + restarted: yes + +- name: "Symlink nginx configuration to sites-enabled" + file: + src: "/etc/nginx/sites-available/{{ item.url }}" + dest: "/etc/nginx/sites-enabled/{{ item.url }}" + state: link + become: yes + +- name: Verify nginx configuration + command: "nginx -t" + become: yes + +- name: Restart nginx service + service: + name: nginx + state: restarted + become: yes \ No newline at end of file diff --git a/ansible/sites.yml b/ansible/sites.yml new file mode 100644 index 0000000..d0199f3 --- /dev/null +++ b/ansible/sites.yml @@ -0,0 +1,3 @@ +--- +- import_playbook: build.yml +- import_playbook: deploy.yml \ No newline at end of file diff --git a/jitsi/ansible/ansible.cfg b/jitsi/ansible/ansible.cfg new file mode 100644 index 0000000..a1a218c --- /dev/null +++ b/jitsi/ansible/ansible.cfg @@ -0,0 +1,13 @@ +[defaults] +# To forward my SSH key to remote hosts, and be able to pull from gitlab +transport = ssh + +[ssh_connection] + +# ForwardAgent to forward my SSH key to remote hosts, and be able to pull from gitlab +# ControlMaster to avoid a bug when cloning: https://github.com/ansible/ansible/issues/13876 +# ControlPersist for SSH multiplexing "-o ControlPersist=60s" <- Causes user not being added to docker group T_T +ssh_args = -o ForwardAgent=yes -o ControlMaster=auto + +# For speed +pipelining=True diff --git a/jitsi/ansible/facts b/jitsi/ansible/facts new file mode 100644 index 0000000..b6557c1 --- /dev/null +++ b/jitsi/ansible/facts @@ -0,0 +1,610 @@ + __________________ +< PLAY [discovery] > + ------------------ + \ ^__^ + \ (oo)\_______ + (__)\ )\/\ + ||----w | + || || + + ________________________ +< TASK [Gathering Facts] > + ------------------------ + \ ^__^ + \ (oo)\_______ + (__)\ )\/\ + ||----w | + || || + +ok: [discovery] + ______________ +< TASK [debug] > + -------------- + \ ^__^ + \ (oo)\_______ + (__)\ )\/\ + ||----w | + || || + +ok: [discovery] => { + "ansible_facts": { + "_facts_gathered": true, + "all_ipv4_addresses": [ + "92.243.19.121" + ], + "all_ipv6_addresses": [ + "2001:4b98:dc0:43:216:3eff:fe57:c7c", + "fe80::216:3eff:fe57:c7c" + ], + "ansible_local": {}, + "apparmor": { + "status": "enabled" + }, + "architecture": "x86_64", + "bios_date": "", + "bios_version": "", + "cmdline": { + "console": "hvc0", + "loglevel": "5", + "net.ifnames": "0", + "nomce": true, + "ro": true, + "root": "LABEL=debian-buster" + }, + "date_time": { + "date": "2020-04-09", + "day": "09", + "epoch": "1586448390", + "hour": "18", + "iso8601": "2020-04-09T16:06:30Z", + "iso8601_basic": "20200409T180630161764", + "iso8601_basic_short": "20200409T180630", + "iso8601_micro": "2020-04-09T16:06:30.161920Z", + "minute": "06", + "month": "04", + "second": "30", + "time": "18:06:30", + "tz": "CEST", + "tz_offset": "+0200", + "weekday": "Thursday", + "weekday_number": "4", + "weeknumber": "14", + "year": "2020" + }, + "default_ipv4": { + "address": "92.243.19.121", + "alias": "eth0", + "broadcast": "92.243.19.255", + "gateway": "92.243.19.254", + "interface": "eth0", + "macaddress": "00:16:3e:57:0c:7c", + "mtu": 1500, + "netmask": "255.255.252.0", + "network": "92.243.16.0", + "type": "ether" + }, + "default_ipv6": { + "address": "2001:4b98:dc0:43:216:3eff:fe57:c7c", + "gateway": "fe80::216:3eff:feea:dd92", + "interface": "eth0", + "macaddress": "00:16:3e:57:0c:7c", + "mtu": 1500, + "prefix": "64", + "scope": "global", + "type": "ether" + }, + "device_links": { + "ids": {}, + "labels": { + "xvda1": [ + "debian-buster" + ], + "xvdz": [ + "swap" + ] + }, + "masters": {}, + "uuids": { + "xvda1": [ + "01e4a304-e4a0-4b1d-adbc-866afe76158e" + ], + "xvdz": [ + "bb771606-7c58-4be2-803a-234b6fa9c032" + ] + } + }, + "devices": { + "xvda": { + "holders": [], + "host": "", + "links": { + "ids": [], + "labels": [], + "masters": [], + "uuids": [] + }, + "model": null, + "partitions": { + "xvda1": { + "holders": [], + "links": { + "ids": [], + "labels": [ + "debian-buster" + ], + "masters": [], + "uuids": [ + "01e4a304-e4a0-4b1d-adbc-866afe76158e" + ] + }, + "sectors": "104855519", + "sectorsize": 512, + "size": "50.00 GB", + "start": "2048", + "uuid": "01e4a304-e4a0-4b1d-adbc-866afe76158e" + } + }, + "removable": "0", + "rotational": "0", + "sas_address": null, + "sas_device_handle": null, + "scheduler_mode": "none", + "sectors": "104857600", + "sectorsize": "512", + "size": "50.00 GB", + "support_discard": "0", + "vendor": null, + "virtual": 1 + }, + "xvdz": { + "holders": [], + "host": "", + "links": { + "ids": [], + "labels": [ + "swap" + ], + "masters": [], + "uuids": [ + "bb771606-7c58-4be2-803a-234b6fa9c032" + ] + }, + "model": null, + "partitions": {}, + "removable": "0", + "rotational": "0", + "sas_address": null, + "sas_device_handle": null, + "scheduler_mode": "none", + "sectors": "1482752", + "sectorsize": "512", + "size": "724.00 MB", + "support_discard": "0", + "vendor": null, + "virtual": 1 + } + }, + "distribution": "Debian", + "distribution_file_parsed": true, + "distribution_file_path": "/etc/os-release", + "distribution_file_variety": "Debian", + "distribution_major_version": "10", + "distribution_release": "buster", + "distribution_version": "10", + "dns": { + "nameservers": [ + "155.133.140.130", + "155.133.140.129", + "2001:4b98:dc6:255::129" + ], + "options": { + "attempts": "3", + "rotate": true, + "timeout": "1" + } + }, + "domain": "", + "effective_group_id": 0, + "effective_user_id": 0, + "env": { + "HOME": "/root", + "LANG": "en_US.UTF-8", + "LC_CTYPE": "fr_FR.UTF-8", + "LOGNAME": "root", + "MAIL": "/var/mail/root", + "PATH": "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", + "PWD": "/home/adrien", + "SHELL": "/bin/bash", + "SUDO_COMMAND": "/bin/sh -c echo BECOME-SUCCESS-jogxnlsbhumrfjsvpnlkcmumvohyokvj ; /usr/bin/python3", + "SUDO_GID": "100", + "SUDO_UID": "1000", + "SUDO_USER": "adrien", + "TERM": "unknown", + "USER": "root" + }, + "eth0": { + "active": true, + "device": "eth0", + "features": { + "esp_hw_offload": "off [fixed]", + "esp_tx_csum_hw_offload": "off [fixed]", + "fcoe_mtu": "off [fixed]", + "generic_receive_offload": "on", + "generic_segmentation_offload": "on", + "highdma": "off [fixed]", + "hw_tc_offload": "off [fixed]", + "l2_fwd_offload": "off [fixed]", + "large_receive_offload": "off [fixed]", + "loopback": "off [fixed]", + "netns_local": "off [fixed]", + "ntuple_filters": "off [fixed]", + "receive_hashing": "off [fixed]", + "rx_all": "off [fixed]", + "rx_checksumming": "on [fixed]", + "rx_fcs": "off [fixed]", + "rx_gro_hw": "off [fixed]", + "rx_udp_tunnel_port_offload": "off [fixed]", + "rx_vlan_filter": "off [fixed]", + "rx_vlan_offload": "off [fixed]", + "rx_vlan_stag_filter": "off [fixed]", + "rx_vlan_stag_hw_parse": "off [fixed]", + "scatter_gather": "on", + "tcp_segmentation_offload": "on", + "tls_hw_record": "off [fixed]", + "tls_hw_rx_offload": "off [fixed]", + "tls_hw_tx_offload": "off [fixed]", + "tx_checksum_fcoe_crc": "off [fixed]", + "tx_checksum_ip_generic": "off [fixed]", + "tx_checksum_ipv4": "on [fixed]", + "tx_checksum_ipv6": "on", + "tx_checksum_sctp": "off [fixed]", + "tx_checksumming": "on", + "tx_esp_segmentation": "off [fixed]", + "tx_fcoe_segmentation": "off [fixed]", + "tx_gre_csum_segmentation": "off [fixed]", + "tx_gre_segmentation": "off [fixed]", + "tx_gso_partial": "off [fixed]", + "tx_gso_robust": "on [fixed]", + "tx_ipxip4_segmentation": "off [fixed]", + "tx_ipxip6_segmentation": "off [fixed]", + "tx_lockless": "off [fixed]", + "tx_nocache_copy": "off", + "tx_scatter_gather": "on", + "tx_scatter_gather_fraglist": "off [fixed]", + "tx_sctp_segmentation": "off [fixed]", + "tx_tcp6_segmentation": "on", + "tx_tcp_ecn_segmentation": "off [fixed]", + "tx_tcp_mangleid_segmentation": "off", + "tx_tcp_segmentation": "on", + "tx_udp_segmentation": "off [fixed]", + "tx_udp_tnl_csum_segmentation": "off [fixed]", + "tx_udp_tnl_segmentation": "off [fixed]", + "tx_vlan_offload": "off [fixed]", + "tx_vlan_stag_hw_insert": "off [fixed]", + "udp_fragmentation_offload": "off", + "vlan_challenged": "off [fixed]" + }, + "hw_timestamp_filters": [], + "ipv4": { + "address": "92.243.19.121", + "broadcast": "92.243.19.255", + "netmask": "255.255.252.0", + "network": "92.243.16.0" + }, + "ipv6": [ + { + "address": "2001:4b98:dc0:43:216:3eff:fe57:c7c", + "prefix": "64", + "scope": "global" + }, + { + "address": "fe80::216:3eff:fe57:c7c", + "prefix": "64", + "scope": "link" + } + ], + "macaddress": "00:16:3e:57:0c:7c", + "module": "xen_netfront", + "mtu": 1500, + "pciid": "vif-0", + "promisc": false, + "timestamping": [ + "rx_software", + "software" + ], + "type": "ether" + }, + "fibre_channel_wwn": [], + "fips": false, + "form_factor": "", + "fqdn": "discovery", + "gather_subset": [ + "all" + ], + "hostname": "discovery", + "hostnqn": "", + "interfaces": [ + "eth0", + "lo" + ], + "is_chroot": false, + "iscsi_iqn": "", + "kernel": "4.19.0-5-amd64", + "kernel_version": "#1 SMP Debian 4.19.37-5 (2019-06-19)", + "lo": { + "active": true, + "device": "lo", + "features": { + "esp_hw_offload": "off [fixed]", + "esp_tx_csum_hw_offload": "off [fixed]", + "fcoe_mtu": "off [fixed]", + "generic_receive_offload": "on", + "generic_segmentation_offload": "on", + "highdma": "on [fixed]", + "hw_tc_offload": "off [fixed]", + "l2_fwd_offload": "off [fixed]", + "large_receive_offload": "off [fixed]", + "loopback": "on [fixed]", + "netns_local": "on [fixed]", + "ntuple_filters": "off [fixed]", + "receive_hashing": "off [fixed]", + "rx_all": "off [fixed]", + "rx_checksumming": "on [fixed]", + "rx_fcs": "off [fixed]", + "rx_gro_hw": "off [fixed]", + "rx_udp_tunnel_port_offload": "off [fixed]", + "rx_vlan_filter": "off [fixed]", + "rx_vlan_offload": "off [fixed]", + "rx_vlan_stag_filter": "off [fixed]", + "rx_vlan_stag_hw_parse": "off [fixed]", + "scatter_gather": "on", + "tcp_segmentation_offload": "on", + "tls_hw_record": "off [fixed]", + "tls_hw_rx_offload": "off [fixed]", + "tls_hw_tx_offload": "off [fixed]", + "tx_checksum_fcoe_crc": "off [fixed]", + "tx_checksum_ip_generic": "on [fixed]", + "tx_checksum_ipv4": "off [fixed]", + "tx_checksum_ipv6": "off [fixed]", + "tx_checksum_sctp": "on [fixed]", + "tx_checksumming": "on", + "tx_esp_segmentation": "off [fixed]", + "tx_fcoe_segmentation": "off [fixed]", + "tx_gre_csum_segmentation": "off [fixed]", + "tx_gre_segmentation": "off [fixed]", + "tx_gso_partial": "off [fixed]", + "tx_gso_robust": "off [fixed]", + "tx_ipxip4_segmentation": "off [fixed]", + "tx_ipxip6_segmentation": "off [fixed]", + "tx_lockless": "on [fixed]", + "tx_nocache_copy": "off [fixed]", + "tx_scatter_gather": "on [fixed]", + "tx_scatter_gather_fraglist": "on [fixed]", + "tx_sctp_segmentation": "on", + "tx_tcp6_segmentation": "on", + "tx_tcp_ecn_segmentation": "on", + "tx_tcp_mangleid_segmentation": "on", + "tx_tcp_segmentation": "on", + "tx_udp_segmentation": "off [fixed]", + "tx_udp_tnl_csum_segmentation": "off [fixed]", + "tx_udp_tnl_segmentation": "off [fixed]", + "tx_vlan_offload": "off [fixed]", + "tx_vlan_stag_hw_insert": "off [fixed]", + "udp_fragmentation_offload": "off", + "vlan_challenged": "on [fixed]" + }, + "hw_timestamp_filters": [], + "ipv4": { + "address": "127.0.0.1", + "broadcast": "host", + "netmask": "255.0.0.0", + "network": "127.0.0.0" + }, + "ipv6": [ + { + "address": "::1", + "prefix": "128", + "scope": "host" + } + ], + "mtu": 65536, + "promisc": false, + "timestamping": [ + "tx_software", + "rx_software", + "software" + ], + "type": "loopback" + }, + "lsb": { + "codename": "buster", + "description": "Debian GNU/Linux 10 (buster)", + "id": "Debian", + "major_release": "10", + "release": "10" + }, + "machine": "x86_64", + "machine_id": "0dab42506f864d22a0b29ef98680eb7d", + "memfree_mb": 871, + "memory_mb": { + "nocache": { + "free": 1809, + "used": 174 + }, + "real": { + "free": 871, + "total": 1983, + "used": 1112 + }, + "swap": { + "cached": 0, + "free": 723, + "total": 723, + "used": 0 + } + }, + "memtotal_mb": 1983, + "module_setup": true, + "mounts": [ + { + "block_available": 11896660, + "block_size": 4096, + "block_total": 12884851, + "block_used": 988191, + "device": "/dev/xvda1", + "fstype": "ext4", + "inode_available": 3232800, + "inode_total": 3276800, + "inode_used": 44000, + "mount": "/", + "options": "rw,noatime,errors=remount-ro", + "size_available": 48728719360, + "size_total": 52776349696, + "uuid": "01e4a304-e4a0-4b1d-adbc-866afe76158e" + }, + { + "block_available": 0, + "block_size": 4096, + "block_total": 0, + "block_used": 0, + "device": "/etc/auto.gandi", + "fstype": "autofs", + "inode_available": 0, + "inode_total": 0, + "inode_used": 0, + "mount": "/srv", + "options": "rw,relatime,fd=6,pgrp=456,timeout=2592000,minproto=5,maxproto=5,indirect,pipe_ino=14047", + "size_available": 0, + "size_total": 0, + "uuid": "N/A" + } + ], + "nodename": "discovery", + "os_family": "Debian", + "pkg_mgr": "apt", + "proc_cmdline": { + "console": [ + "ttyS0", + "hvc0" + ], + "loglevel": "5", + "net.ifnames": "0", + "nomce": true, + "ro": true, + "root": "LABEL=debian-buster" + }, + "processor": [ + "0", + "GenuineIntel", + "Intel(R) Xeon(R) CPU E5-2650 v4 @ 2.20GHz", + "1", + "GenuineIntel", + "Intel(R) Xeon(R) CPU E5-2650 v4 @ 2.20GHz" + ], + "processor_cores": 2, + "processor_count": 2, + "processor_threads_per_core": 1, + "processor_vcpus": 2, + "product_name": "", + "product_serial": "", + "product_uuid": "", + "product_version": "", + "python": { + "executable": "/usr/bin/python3", + "has_sslcontext": true, + "type": "cpython", + "version": { + "major": 3, + "micro": 3, + "minor": 7, + "releaselevel": "final", + "serial": 0 + }, + "version_info": [ + 3, + 7, + 3, + "final", + 0 + ] + }, + "python_version": "3.7.3", + "real_group_id": 0, + "real_user_id": 0, + "selinux": { + "status": "Missing selinux Python library" + }, + "selinux_python_present": false, + "service_mgr": "systemd", + "ssh_host_key_ecdsa_public": "AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDlD/fvsGCIPE5yqHrbkAWHpyYYmZxg4MT5K46St7yVy5/j+WWQcvY6eypSwZR7kbxqytQ2G43kZWpobXt9rEX8=", + "ssh_host_key_ed25519_public": "AAAAC3NzaC1lZDI1NTE5AAAAIJsvcDTwcMXFkHgwGh5zy/Z6DROX+N+A3hcnF8WJM8cm", + "ssh_host_key_rsa_public": "AAAAB3NzaC1yc2EAAAADAQABAAABAQCfuxAxZVttU3sDZp4/ENcouB1/YxcgX+3rN8kw3FCC4KB/F+uYNgNwiRR2uC8p2oVDHl3YrCFg54+Sz3QQ1yzrVsMBlts2uEgiuefxe0hhGPdzv/QluoGssPwsWdWi0jLKG4hNSwjq2syKGl90RB4JqzyRUsXaWL3r0aO/3mTXK2u38t8+dIsoJ5oiifVybsPfqCvqvNhLPpTAWnaOHiksOim1AFvjNSNT/NOajOGQORExnkLXMJ2UQWqCHbLJaHjvhhPUhdE/+T3p91Epe1J9FVXSJOoffDesUeWRF8NBg65WfBnc+A1u1uYquLQE2CkluWIfDSKDY/rKjmvw7Z/J", + "swapfree_mb": 723, + "swaptotal_mb": 723, + "system": "Linux", + "system_capabilities": [ + "cap_chown", + "cap_dac_override", + "cap_dac_read_search", + "cap_fowner", + "cap_fsetid", + "cap_kill", + "cap_setgid", + "cap_setuid", + "cap_setpcap", + "cap_linux_immutable", + "cap_net_bind_service", + "cap_net_broadcast", + "cap_net_admin", + "cap_net_raw", + "cap_ipc_lock", + "cap_ipc_owner", + "cap_sys_module", + "cap_sys_rawio", + "cap_sys_chroot", + "cap_sys_ptrace", + "cap_sys_pacct", + "cap_sys_admin", + "cap_sys_boot", + "cap_sys_nice", + "cap_sys_resource", + "cap_sys_time", + "cap_sys_tty_config", + "cap_mknod", + "cap_lease", + "cap_audit_write", + "cap_audit_control", + "cap_setfcap", + "cap_mac_override", + "cap_mac_admin", + "cap_syslog", + "cap_wake_alarm", + "cap_block_suspend", + "cap_audit_read+ep" + ], + "system_capabilities_enforced": "True", + "system_vendor": "", + "uptime_seconds": 2542, + "user_dir": "/root", + "user_gecos": "root", + "user_gid": 0, + "user_id": "root", + "user_shell": "/bin/bash", + "user_uid": 0, + "userspace_architecture": "x86_64", + "userspace_bits": "64", + "virtualization_role": "guest", + "virtualization_type": "xen" + } +} + ____________ +< PLAY RECAP > + ------------ + \ ^__^ + \ (oo)\_______ + (__)\ )\/\ + ||----w | + || || + +discovery : ok=2 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 + diff --git a/jitsi/ansible/install.yml b/jitsi/ansible/install.yml new file mode 100644 index 0000000..e9bb336 --- /dev/null +++ b/jitsi/ansible/install.yml @@ -0,0 +1,6 @@ +--- +- hosts: discovery + become: true + roles: + - common + - docker \ No newline at end of file diff --git a/jitsi/ansible/inventory b/jitsi/ansible/inventory new file mode 100644 index 0000000..baff55a --- /dev/null +++ b/jitsi/ansible/inventory @@ -0,0 +1,7 @@ +discovery ansible_host=92.243.19.121 ansible_user=adrien + +[py3-hosts] +discovery + +[py3-hosts:vars] +ansible_python_interpreter=/usr/bin/python3 diff --git a/jitsi/ansible/roles/common/tasks/main.yml b/jitsi/ansible/roles/common/tasks/main.yml new file mode 100644 index 0000000..5cf2de0 --- /dev/null +++ b/jitsi/ansible/roles/common/tasks/main.yml @@ -0,0 +1,46 @@ +--- + +- name: "Check that host runs Debian buster/sid on x86_64" + assert: + that: + - "ansible_architecture == 'aarch64' or ansible_architecture == 'x86_64'" + - "ansible_os_family == 'Debian'" + + +- name: "Upgrade system" + apt: + upgrade: dist # Should we do a full uprade instead of a dist one? + update_cache: yes + cache_valid_time: 3600 + autoclean: yes + autoremove: yes + +- name: "Install base tools" + apt: + state: present + update_cache: no + name: + - atop + - bmon + - curl + - dnsutils + - fail2ban + - git + - htop + - iftop + - iotop + - iproute2 + - iptables + - iptables-persistent + - iputils-ping + - less + - net-tools + - nginx + - screen + - strace + - sudo + - tar + - tcpdump + - unzip + - vim + diff --git a/jitsi/ansible/roles/docker/tasks/main.yml b/jitsi/ansible/roles/docker/tasks/main.yml new file mode 100644 index 0000000..70d0728 --- /dev/null +++ b/jitsi/ansible/roles/docker/tasks/main.yml @@ -0,0 +1,49 @@ +--- + +- name: "Check that host runs Debian buster/sid on x86_64" + assert: + that: + - "ansible_architecture == 'aarch64' or ansible_architecture == 'x86_64'" + - "ansible_os_family == 'Debian'" + +- name: Remove stale Docker versions + apt: + state: absent + name: + - docker + - docker-engine + - docker.io + - containerd + - runc + +- name: Install Docker prerequisities + apt: + state: present + update_cache: yes + name: + - apt-transport-https + - ca-certificates + - curl + - gnupg-agent + - software-properties-common + +- name: Add Docker's GPG key to apt + apt_key: + url: https://download.docker.com/linux/debian/gpg + +- name: Add Docker's repository to apt + apt_repository: + repo: deb [arch=amd64] https://download.docker.com/linux/debian buster stable + state: present + +- name: Install Docker + apt: + state: present + update_cache: yes + name: + - docker-ce + - docker-ce-cli + - containerd.io + +# For docker-compose it's a bit lame: +# sudo curl -L "https://github.com/docker/compose/releases/download/1.25.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose \ No newline at end of file diff --git a/jitsi/ansible/roles/jitsi/tasks/main.yml b/jitsi/ansible/roles/jitsi/tasks/main.yml new file mode 100644 index 0000000..209558a --- /dev/null +++ b/jitsi/ansible/roles/jitsi/tasks/main.yml @@ -0,0 +1,10 @@ +- name: Create output directory + file: + name: /jitsi + state: directory + owner: adrien + group: adrien + +- name: Clone deuxfleurs repo to remote + git: + src: diff --git a/sites/arvuhez/README.md b/sites/arvuhez.old/README.md similarity index 100% rename from sites/arvuhez/README.md rename to sites/arvuhez.old/README.md diff --git a/sites/arvuhez/docker-compose.yml b/sites/arvuhez.old/docker-compose.yml similarity index 100% rename from sites/arvuhez/docker-compose.yml rename to sites/arvuhez.old/docker-compose.yml diff --git a/sites/lexperimental/docker-compose.yml b/sites/lexperimental.old/docker-compose.yml similarity index 100% rename from sites/lexperimental/docker-compose.yml rename to sites/lexperimental.old/docker-compose.yml diff --git a/sites/lexperimental/lexperimental.fr b/sites/lexperimental.old/lexperimental.fr similarity index 100% rename from sites/lexperimental/lexperimental.fr rename to sites/lexperimental.old/lexperimental.fr diff --git a/sites/rennes-des-bois/README.md b/sites/rennes-des-bois.old/README.md similarity index 100% rename from sites/rennes-des-bois/README.md rename to sites/rennes-des-bois.old/README.md diff --git a/sites/rennes-des-bois/docker-compose.yml b/sites/rennes-des-bois.old/docker-compose.yml similarity index 100% rename from sites/rennes-des-bois/docker-compose.yml rename to sites/rennes-des-bois.old/docker-compose.yml