[qmailtoaster] Re: Qmailadmin weirdness

2024-06-09 Thread Chris
Found it. When setting the domain defaults using /home/vpopmail/bin/vmoddomlimits I had used NOQUOTA on the parameters regarding the number of accounts, aliases, forwarders, etc. While it looked like it worked, this was the source of the missing menu items in qmailadmin. Once I re-ran the

Re: [qmailtoaster] Re: Rocky9 - new mailserver setup - off topic

2024-04-16 Thread Gary Bowling
You just have to have certbot installed (dnf install cerbot) and then have the timer active. That takes care of running it on a schedule and then you just configure it in all the directories under /etc/letsencrypt/ Here's what mine looks like.

Re: [qmailtoaster] Re: Rocky9 - new mailserver setup - off topic

2024-04-16 Thread Gary Bowling
Yes, the script can go in those directories not in a cron. I don't believe you have to call --deploy-hook on the command line if the script is in those directories. Actually you don't call anything in the command line, it's all done as part of the

Re: [qmailtoaster] Re: Rocky9 - new mailserver setup - off topic

2024-04-16 Thread William Silverstein
I suspect that it could be done either way. I have been using --deploy-hook since I started using letsencrypt. I'll look at the /etc/letsencrypt/renewal-hooks when I build my new server (soon, I hope). On Tue, April 16, 2024 7:34 am, Eric Broch wrote: > I thought William S. had mentioned

Re: [qmailtoaster] Re: Rocky9 - new mailserver setup - off topic

2024-04-16 Thread Eric Broch
I thought William S. had mentioned something about a Let's Encrypt hook instead of a cron job. From what I've been reading, one's script simply goes in /etc/letsencrypt/renewal-hooks/{pre,post,deploy] or something like that, true? Then I suppose one calls certbot renew --deploy-hook or something

Re: [qmailtoaster] Re: Rocky9 - new mailserver setup - off topic

2024-04-16 Thread Gary Bowling
I'll help edit it if someone else that is currently going through it wants to start it.  Maybe set up a google doc and give some people edit access. Or give read only access and we can drop comments/suggestions back here for someone to edit. It's been a

Re: [qmailtoaster] Re: Rocky9 - new mailserver setup - off topic

2024-04-15 Thread Eric Broch
I'm not sure how many are using EL8, but I'll have that ready in a couple days On Mon, Apr 15, 2024 at 8:47 PM Eric Broch wrote: > qmail-1.03-3.3.9 > > It has eliminated the need for dh and rsa keys > > Eric > > On Mon, Apr 15, 2024 at 10:44 AM Eric Broch > wrote: > >> Neither, >> >>

Re: [qmailtoaster] Re: Rocky9 - new mailserver setup - off topic

2024-04-15 Thread Eric Broch
qmail-1.03-3.3.9 It has eliminated the need for dh and rsa keys Eric On Mon, Apr 15, 2024 at 10:44 AM Eric Broch wrote: > Neither, > > /var/qmail/control/dh2048.pem > /var/qmail/control/rsa2048.pem > > On 4/15/2024 10:33 AM, Gary Bowling wrote: > > > Thanks, will still require rsa? > > > On

Re: [qmailtoaster] Re: Rocky9 - new mailserver setup - off topic

2024-04-15 Thread Eric Broch
Anyone feel like doing a write-up and I'll put it on the wiki? On 4/15/2024 11:18 AM, Gary Bowling wrote: Ah, right. Actually it looks like I can just place my script that I currently run in my cron job in the /etc/letsencrypt/renewal-hooks/post/ directory and it will run as a "post renew"

Re: [qmailtoaster] Re: Rocky9 - new mailserver setup - off topic

2024-04-15 Thread Gary Bowling
Ah, right. Actually it looks like I can just place my script that I currently run in my cron job in the /etc/letsencrypt/renewal-hooks/post/ directory and it will run as a "post renew" script. Thanks for that. Gary

Re: [qmailtoaster] Re: Rocky9 - new mailserver setup - off topic

2024-04-15 Thread William Silverstein
I would not use a cron script. I use --deploy-hook option on the certbot-auto to handle it. On Mon, April 15, 2024 9:59 am, Gary Bowling wrote: > > > > > Great. One question. Seems like everything on my server uses > /var/qmail/control/servercert.pem for the cert. Dovecot and qmail > all use

Re: [qmailtoaster] Re: Rocky9 - new mailserver setup - off topic

2024-04-15 Thread Gary Bowling
Great. One question. Seems like everything on my server uses /var/qmail/control/servercert.pem for the cert. Dovecot and qmail all use that file. And I have a cron job that runs once a month to check for a new letsencrypt cert and if there is one it copies

Re: [qmailtoaster] Re: Rocky9 - new mailserver setup - off topic

2024-04-15 Thread Eric Broch
Neither, /var/qmail/control/dh2048.pem /var/qmail/control/rsa2048.pem On 4/15/2024 10:33 AM, Gary Bowling wrote: Thanks, will still require rsa? On 4/15/2024 10:47 AM, Eric Broch wrote: My next iteration on EL9 will remove keysize it's deprecated, has been for a while. Should have the

Re: [qmailtoaster] Re: Rocky9 - new mailserver setup - off topic

2024-04-15 Thread Gary Bowling
Thanks, will still require rsa? On 4/15/2024 10:47 AM, Eric Broch wrote: My next iteration on EL9 will remove keysize it's deprecated, has been for a while. Should have the new code out within the week.

Re: [qmailtoaster] Re: Rocky9 - new mailserver setup - off topic

2024-04-15 Thread Eric Broch
My next iteration on EL9 will remove keysize it's deprecated, has been for a while. Should have the new code out within the week. SSL_CTX_set_tmp_rsa_callback · openssl/openssl · Discussion #23769 (github.com) On 4/15/2024 6:25 AM, Gary

Re: [qmailtoaster] Re: Rocky9 - new mailserver setup - off topic

2024-04-15 Thread Eric Broch
Will fix on EL8, soon...removing this function: SSL_set_tmp_rsa_callback(myssl, tmp_rsa_cb); . . . RSA *tmp_rsa_cb(SSL *ssl, int export, int keylen) {   RSA *rsa;   if (!export) keylen = 2048;   if (keylen == 2048) {     FILE *in = fopen("control/rsa2048.pem", "r");     if (in) {   rsa

Re: [qmailtoaster] Re: Rocky9 - new mailserver setup - off topic

2024-04-15 Thread Jeff Koch
Gary - thanks for this info - I'll add it to our setup notes. Jeff On 4/15/2024 8:25 AM, Gary Bowling wrote: Hey Jeff, glad you're making progress. Be aware that when you get a new cert from Letsencrypt that the default now retrieves an ECDSA cert. Which is fine for apache, but doesn't

Re: [qmailtoaster] Re: Rocky9 - new mailserver setup - off topic

2024-04-15 Thread Gary Bowling
Hey Jeff, glad you're making progress. Be aware that when you get a new cert from Letsencrypt that the default now retrieves an ECDSA cert. Which is fine for apache, but doesn't work on qmail, or at least it didn't for me. To fix that you'll need to

Re: [qmailtoaster] Re: Rocky9 - new mailserver setup - off topic

2024-04-14 Thread Remo Mattei
For the longest time I used sources but was always too painful when there are dependencies and when bugs are discovered not enough time to babysit it. My 2 cents on that. Inviato da iPhone > Il giorno 14 apr 2024, alle ore 20:41, Jeff Koch > ha scritto: > >  I may have resolved this. I

[qmailtoaster] Re: Rocky9 - new mailserver setup - off topic

2024-04-14 Thread Jeff Koch
I may have resolved this. I did the Rocy9 distro install of apache and copied the mod_http2.so file over to our install of apache. Seems to work (no errors) but I won't know for sure until we setup Lets Encrypt SSL certbot tomorrow Jeff On 4/14/2024 3:11 PM, Jeff Koch wrote: Hi - we're

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-08 Thread Qmail
ster-list@qmailtoaster.com *Subject:* Re: [qmailtoaster] Re: I messed up DKIM setup Here are what entries in the assign file look like, below. You'll need to check the domains in /home/vpopmail/domains and add them in the assign file then run qmailctl cdb. Then you'll need to add

Re: Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Eric Broch
; >From: Eric Broch >Sent: 08 April 2024 09:44 >To: qmailtoaster-list@qmailtoaster.com > >Subject: Re: [qmailtoaster] Re: I messed up DKIM setup > >Here are what entries in the assign file look like, below. You'll need >to check the domains in /

Re: Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Eric Broch
2024 09:27 >To: qmailtoaster-list@qmailtoaster.com > >Subject: Re: [qmailtoaster] Re: I messed up DKIM setup > ># cat /var/qmail/users/assign > >If there is nothing in it it's going to have to be rebuilt. > >On Apr 7, 2024, at 9:48 PM, Biju Jose >mailto:bijuko.

Re: Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Biju Jose
Subject: Re: [qmailtoaster] Re: I messed up DKIM setup Here are what entries in the assign file look like, below. You'll need to check the domains in /home/vpopmail/domains and add them in the assign file then run qmailctl cdb. Then you'll need to add domains to the rcpthosts file

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Eric Broch
TPS: postmas...@domain1.co.in --> bijuko...@outlook.com [failed] >> >> >>____ >>From: Eric Broch >>Sent: 08 April 2024 07:57 >>To: qmailtoaster-list@qmailtoaster.com >> >>Subject: Re: [qmailtoaster] Re: I mess

Re: Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Biju Jose
it? From: Eric Broch Sent: 08 April 2024 09:27 To: qmailtoaster-list@qmailtoaster.com Subject: Re: [qmailtoaster] Re: I messed up DKIM setup # cat /var/qmail/users/assign If there is nothing in it it's going to have to be rebuilt. On Apr 7, 2024, at 9:48 PM, Biju Jose mailto:bijuko

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Eric Broch
>IMAPS: postmas...@domain1.co.in [failed] >Submission: postmas...@domain1.co.in --> bijuko...@outlook.com [failed] >SMTPS: postmas...@domain1.co.in --> bijuko...@outlook.com [failed] > > > >From: Eric Broch >Sent: 08 April 2024 07:57 >To: qmail

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Biju Jose
om [failed] From: Eric Broch Sent: 08 April 2024 07:57 To: qmailtoaster-list@qmailtoaster.com Subject: Re: [qmailtoaster] Re: I messed up DKIM setup Biju, The first thing to do is to check dovecot. doveadm auth test usern...@somedomain.com<mailto:usern...@somedomain.com> 'pass

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Biju Jose
@qmailtoaster.com Subject: Re: [qmailtoaster] Re: I messed up DKIM setup DKIM install messed up qmail-remote.orig lost in the mess rpm -e --nodeps qmail yum install qmail copied the contents from .rpmsave in /var/qmail/control to the respective files including virtualdomains restarted the machine

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Biju Jose
tables are in the database /home/vpopmail/domains directory is intact unable to login to existing domains. From: Eric Broch Sent: 08 April 2024 07:42 To: qmailtoaster-list@qmailtoaster.com Subject: Re: [qmailtoaster] Re: I messed up DKIM setup The *ONLY* thing

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Eric Broch
How can I fix  this? *From:* Eric Broch *Sent:* 08 April 2024 07:23 *To:* qmailtoaster-list@qmailtoaster.com *Subject:* Re: [qmailtoaster] Re: I messed up DKIM setup Does it work now? On 4/7/2024 6:57 PM, Biju Jose wrote: # qmailctl stat

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Eric Broch
:23 *To:* qmailtoaster-list@qmailtoaster.com *Subject:* Re: [qmailtoaster] Re: I messed up DKIM setup Does it work now? On 4/7/2024 6:57 PM, Biju Jose wrote: # qmailctl stat send: up (pid 1761) 126 seconds smtp: up (pid 1760) 126 seconds submission: up (pid 1774) 126 seconds send/log: up (pid

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Biju Jose
No, I can login to newly created domain, but not to the existing domains. How can I fix this? From: Eric Broch Sent: 08 April 2024 07:23 To: qmailtoaster-list@qmailtoaster.com Subject: Re: [qmailtoaster] Re: I messed up DKIM setup Does it work now? On 4/7

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Eric Broch
*From:* Biju Jose *Sent:* 08 April 2024 00:15 *To:* qmailtoaster-list@qmailtoaster.com *Subject:* Re: [qmailtoaster] Re: I messed up DKIM setup # qmailctl stat send: up (pid 44308) 13 seconds smtp: up (pid 44504) 0 seconds

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Biju Jose
2024 00:15 To: qmailtoaster-list@qmailtoaster.com Subject: Re: [qmailtoaster] Re: I messed up DKIM setup # qmailctl stat send: up (pid 44308) 13 seconds smtp: up (pid 44504) 0 seconds submission: up (pid 44505) 0 seconds send/log: up (pid 44309) 13 seconds smtp/log: up (pid 44310) 13 seconds

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Biju Jose
send and submission is not running, unable to login to existing domains. From: Eric Broch Sent: 08 April 2024 04:07 To: qmailtoaster-list@qmailtoaster.com Subject: Re: [qmailtoaster] Re: I messed up DKIM setup All you had to do was... yum -y reinstall qmail

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Eric Broch
) 13 seconds submission/log: up (pid 44312) 13 seconds *From:* Biju Jose *Sent:* 08 April 2024 00:01 *To:* qmailtoaster-list@qmailtoaster.com *Subject:* Re: [qmailtoaster] Re: I messed up DKIM setup I have done 1. rpm -e

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Biju Jose
2024 00:01 To: qmailtoaster-list@qmailtoaster.com Subject: Re: [qmailtoaster] Re: I messed up DKIM setup I have done 1. rpm -e --nodeps qmail 2. yum install qmail 3. restored .rpmsave files in /var/qmail/control Now I am unable to login to existing domains . But I can create and login

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Remo Mattei
To: qmailtoaster-list@qmailtoaster.com Subject: Re: [qmailtoaster] Re: I messed up DKIM setup   #ls -l /var/qmail/bin total 1512 -rwxr-xr-x 1 root   qmail  14552 Sep 10  2019 bouncesaying -rwxr-xr-x 1 root   qmail  31224 Sep 10  2019 condredirect -rwxr-xr-x 1 root   qmail   1087 Sep 10  2019 config

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Biju Jose
From: Biju Jose Sent: 07 April 2024 21:44 To: qmailtoaster-list@qmailtoaster.com Subject: Re: [qmailtoaster] Re: I messed up DKIM setup #ls -l /var/qmail/bin total 1512 -rwxr-xr-x 1 root qmail 14552 Sep 10 2019 bouncesaying -rwxr-xr-x 1 root qmail 31224 Sep 10 2019

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Biju Jose
ist@qmailtoaster.com Subject: Re: [qmailtoaster] Re: I messed up DKIM setup All you should have to do is move qmail-remote (original) back to qmail-remote What's in /var/qmail/bin # ls -l /var/qmail/bin If there is a symbolic link to qmail-remote (unlink qmail-remote). do you have qmail-remote.o

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Eric Broch
l-queue 13. # qmailctl start 14. Send email to user on the host 15. Check email header dkim verification *From:* Biju Jose *Sent:* 07 April 2024 21:14 *To:* qmailtoaster-list@qmailtoaster.com *Subject:* Re:

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Biju Jose
# qmailctl start * Send email to user on the host * Check email header dkim verification From: Biju Jose Sent: 07 April 2024 21:14 To: qmailtoaster-list@qmailtoaster.com Subject: Re: [qmailtoaster] Re: I messed up DKIM setup the qmail-remot

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Biju Jose
the qmail-remote.orig file I have is 52,056 bytes root:qmail -rwx—x—x This is not working. Can I get the file please ? From: Eric Broch Sent: 07 April 2024 21:01 To: qmailtoaster-list@qmailtoaster.com Subject: Re: [qmailtoaster] Re: I messed up DKIM setup

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Eric Broch
:* 07 April 2024 20:46 *To:* qmailtoaster-list@qmailtoaster.com *Subject:* Re: [qmailtoaster] Re: I messed up DKIM setup And while your at it, can you check the queue? #qmailctl queue I might ask, do you want to debug this now, or do you want mail to start flowing again? On 4/7/2024 9:14 AM

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Biju Jose
. From: Eric Broch Sent: 07 April 2024 20:46 To: qmailtoaster-list@qmailtoaster.com Subject: Re: [qmailtoaster] Re: I messed up DKIM setup And while your at it, can you check the queue? #qmailctl queue I might ask, do you want to debug this now, or do you want mail

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Eric Broch
-list@qmailtoaster.com *Subject:* Re: [qmailtoaster] Re: I messed up DKIM setup Change qmail-remote to look like this #my $debugfile  = undef; my $debugfile    = '/tmp/dkim.debug'; send an email cat /tmp/dkim.debug post output. On 4/7/2024 8:31 AM, Biju Jose wrote

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Eric Broch
*From:* Eric Broch *Sent:* 07 April 2024 20:06 *To:* qmailtoaster-list@qmailtoaster.com *Subject:* Re: [qmailtoaster] Re: I messed up DKIM setup Change qmail-remote to look like this #my $debugfile  = undef; my $debugfile    = '/tmp/dkim.debug'; send an email

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Biju Jose
: [qmailtoaster] Re: I messed up DKIM setup Change qmail-remote to look like this #my $debugfile = undef; my $debugfile= '/tmp/dkim.debug'; send an email cat /tmp/dkim.debug post output. On 4/7/2024 8:31 AM, Biju Jose wrote: @40006612abd814cc842c warning: trouble injecting bounce message

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Qmail
@qmailtoaster.com *Subject:* Re: [qmailtoaster] Re: I messed up DKIM setup Is there anything in /var/log/qmail/send/current log? On 4/7/2024 8:27 AM, Biju Jose wrote: The guide was at http://www.qmailtoaster.com/dkim.html <http://www.qmailtoaster.com/dkim.h

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Eric Broch
@qmailtoaster.com *Subject:* Re: [qmailtoaster] Re: I messed up DKIM setup Is there anything in /var/log/qmail/send/current log? On 4/7/2024 8:27 AM, Biju Jose wrote: The guide was at http://www.qmailtoaster.com/dkim.html <http://www.qmailtoaster.com/dkim.h

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Biju Jose
Broch Sent: 07 April 2024 19:59 To: qmailtoaster-list@qmailtoaster.com Subject: Re: [qmailtoaster] Re: I messed up DKIM setup Is there anything in /var/log/qmail/send/current log? On 4/7/2024 8:27 AM, Biju Jose wrote: The guide was at http://www.qmailtoaster.com/dkim.html

Re: [qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Eric Broch
Is there anything in /var/log/qmail/send/current log? On 4/7/2024 8:27 AM, Biju Jose wrote: The guide was at http://www.qmailtoaster.com/dkim.html *From:* Biju Jose *Sent:* 07 April 2024 19:56 *To:*

[qmailtoaster] Re: I messed up DKIM setup

2024-04-07 Thread Biju Jose
The guide was at http://www.qmailtoaster.com/dkim.html From: Biju Jose Sent: 07 April 2024 19:56 To: qmailtoaster-list@qmailtoaster.com Subject: [qmailtoaster] I messed up DKIM setup Hi, I need some urgent help. I messed up a qmail server running on centos 7

Re: [qmailtoaster] Re: Search from webmail: ERROR: Connection interrupted by the IMAP server

2022-10-04 Thread Giuseppe Perna
I use vmware and I can assign up to 20 GB re ram and 10/12 vcpu, but the vm always uses only 1 GB of ram. thanks Il giorno mar 4 ott 2022 alle ore 21:16 Eric Broch ha scritto: > What VE are you using? Can't you assign a hard amount of memory to a VM? > > > On 10/4/2022 10:10 AM, Giuseppe Perna

Re: [qmailtoaster] Re: Search from webmail: ERROR: Connection interrupted by the IMAP server

2022-10-04 Thread Eric Broch
What VE are you using? Can't you assign a hard amount of memory to a VM? On 10/4/2022 10:10 AM, Giuseppe Perna wrote: Hello Eric, Thanks for your replay. I have in total 7GB of RAM, but the vm alloched only 1gb in all condition. Please help me Thanks Il giorno martedì 4 ottobre 2022, Eric

[qmailtoaster] Re: Search from webmail: ERROR: Connection interrupted by the IMAP server

2022-10-04 Thread Giuseppe Perna
Hello Eric, Thanks for your replay. I have in total 7GB of RAM, but the vm alloched only 1gb in all condition. Please help me Thanks Il giorno martedì 4 ottobre 2022, Eric Broch ha scritto: > I did a brief internet search and I did not find anything indicating how > to allow more memory to

[qmailtoaster] Re: **SPAM** Re: [qmailtoaster] qmail toaster support for BDAT

2022-08-28 Thread Remo Mattei
I just tested my two mail servers with qmt and both work just fine and sent email from outlook web. So not sure what is your config and which patch you have used. Remo > On Aug 28, 2022, at 13:25, Jaime Lerner wrote: > > I read that if you’re running ESMTP, that includes BDAT support. QMT

[qmailtoaster] Re: **SPAM** [qmailtoaster] SSL/TLS issue

2022-07-04 Thread Remo Mattei
I am running rocky latest as well I did not notice anything about this but I can check my system and share. > Il giorno 4 lug 2022, alle ore 08:30, Qmail ha scritto: > > Hi all > > I'm Running Rocky - latest and greatest release. > > After updating my Qmail to Rel. 1.03-3.3.7.qt.md.el8

[qmailtoaster] Re: Alias-Login

2022-04-01 Thread Eric Broch
Hi Andreas, For Dovecot alias login you could try a new password query in your '/etc/dovecot/dovecot-sql.conf.ext' file (save original): password_query = SELECT CONCAT( pw_name ,'@', pw_domain ) AS user, \   pw_passwd AS password, \   pw_dir as userdb_home, \   89 AS userdb_uid, \   89 AS

Re: [qmailtoaster] Re: Email account sync issue in email clients

2022-03-30 Thread ChandranManikandan
Hi Eric, I have tried the following procedure and the issue has been resolved. cd /home/vpopmail/domains/domain.com/email/Maildir/cur ls 1648520179.28619.mail.domain.com,S=6322:2, -lh mv 1648520179.28619.mail.domain.com,S=6322:2, /home/vpopmail/domains/ domain.com/email/Maildir/ systemctl

Re: [qmailtoaster] Re: Email account sync issue in email clients

2022-03-29 Thread Eric Broch
Yes, I've removed the offending email to solve this issue. On 3/29/2022 7:57 AM, Mani Kandan wrote: Hi Eric, I have rename the index.cache file and restarted dovecot but still the same sync issue while try from thunderbird or outlook, not download any email after that. But in squirrelmail and

Re: [qmailtoaster] Re: Email account sync issue in email clients

2022-03-29 Thread Mani Kandan
Hi Eric, I have rename the index.cache file and restarted dovecot but still the same sync issue while try from thunderbird or outlook, not download any email after that. But in squirrelmail and round cube webmail can see the new emails except that particular mail page. I have checked dovecot

Re: [qmailtoaster] Re: Email account sync issue in email clients

2022-03-29 Thread Eric Broch
It's most likely a server side issue, specifically the dovecot.index.cache? file records a different size than the message name with S='size'. You could delete the cache file and see if it repairs itself or you could ask on the dovecot list. Eric On 3/29/2022 2:53 AM, ChandranManikandan

[qmailtoaster] Re: Email account sync issue in email clients

2022-03-29 Thread ChandranManikandan
Hi Friends, Anyone having the same issue, some users' email clients (Outlook,Thunderbird) have not synced any emails in Inbox since morning. I tried to repair it myself but received the same message Is it server side issue or email client side issue. I removed that email account and re-configure

Re: [qmailtoaster] Re: Setup quota for large-scale email accounts

2022-03-15 Thread ChandranManikandan
Hi Eric, I have done as you advised and it's working fine now. I tried the following procedure. Check the mailbox usage cd /home/vpopmail/domains/domain.com du -h user /home/vpopmail/bin/vmoduser -q 69793218560 us...@domain.com On Thu, Mar 10, 2022 at 9:27 PM Eric Broch wrote: > Convert GB

[qmailtoaster] Re: Increasing local delivery

2022-03-10 Thread Eric Broch
https://www.mail-archive.com/qmailtoaster-list@qmailtoaster.com/msg43593.html On 3/9/2022 10:42 PM, Tahnan Al Anas wrote: Hi Eric, May be I have reported this before, How can I increase local delivery queue for local delivery, I have found concurrency remote fle increase outgoing delivery

Re: [qmailtoaster] Re: Setup quota for large-scale email accounts

2022-03-10 Thread Eric Broch
Convert GB to Bytes 65GB = 69793218560 bytes /home/vpopmail/bin/vmoduser -q 69793218560 us...@domain.com echo "select pw_shell  from domain_com where pw_name='user1'" | mysql -u root -p vpopmail pw_shell 69793218560S 55GB = 59055800320 bytes /home/vpopmail/bin/vmoduser -q 59055800320

Re: [qmailtoaster] Re: Setup quota for large-scale email accounts

2022-03-09 Thread Tahnan Al Anas
I think you can set quota from qmailadmin -- -- Best Regards Muhammad Tahnan Al Anas On Thu, Mar 10, 2022 at 12:27 PM ChandranManikandan wrote: > Hi Friends, > > Could anyone help me, > how to check the NOQUOTA mailbox size and how to setup quota for the > mailbox quota (MB or GB) > > > On

[qmailtoaster] Re: Setup quota for large-scale email accounts

2022-03-09 Thread ChandranManikandan
Hi Friends, Could anyone help me, how to check the NOQUOTA mailbox size and how to setup quota for the mailbox quota (MB or GB) On Wed, Mar 9, 2022 at 4:35 PM ChandranManikandan wrote: > Hi Folks, > > I've run two large-scale email accounts with NOQUOTA, how to apply for the > reservation of

Re: [qmailtoaster] Re: EZMLM list management issues

2022-03-03 Thread Eric Broch
Same as mine On 3/3/2022 4:43 PM, Chris wrote: [root@mail ~]# rpm -qa |grep ezmlm ezmlm-0.53.324-0.qt.el7.x86_64 ezmlm-cgi-0.53.324-0.qt.el7.x86_64 On Fri, Mar 4, 2022 at 5:30 AM Eric Broch wrote: Sorry, it is actually working on mine from the command line. I was using .org

Re: [qmailtoaster] Re: EZMLM list management issues

2022-03-03 Thread Chris
[root@mail ~]# rpm -qa |grep ezmlm ezmlm-0.53.324-0.qt.el7.x86_64 ezmlm-cgi-0.53.324-0.qt.el7.x86_64 On Fri, Mar 4, 2022 at 5:30 AM Eric Broch wrote: > Sorry, it is actually working on mine from the command line. I was using > .org instead of .com mailing list. > > What version of ezmlm are you

Re: [qmailtoaster] Re: EZMLM list management issues

2022-03-03 Thread Chris
I think I found the problem. Maybe. Last night I created a new list, and then I added and removed subscribers via the web interface and the command line (fixing the directory/file ownership after using the CLI as root) and I had no issues. I suspect the issue is that all of the lists in

Re: [qmailtoaster] Re: EZMLM list management issues

2022-03-03 Thread Eric Broch
Sorry, it is actually working on mine from the command line. I was using .org instead of .com mailing list. What version of ezmlm are you using? # rpm -qa |grep ezmlm On 3/3/2022 8:25 AM, Eric Broch wrote: I removed a subscriber through the qmailadmin interface, but couldn't at the command

Re: [qmailtoaster] Re: EZMLM list management issues

2022-03-03 Thread Eric Broch
I removed a subscriber through the qmailadmin interface, but couldn't at the command line. On 3/3/2022 3:36 AM, qmailtoas...@dukat.dk wrote: I was hoping that Apache/qmailadmin would have given a clue when you hit the trash. Are there illegal chars in the mailaddress? cd

Re: [qmailtoaster] Re: EZMLM list management issues

2022-03-03 Thread qmailtoaster
I was hoping that Apache/qmailadmin would have given a clue when you hit the trash. Are there illegal chars in the mailaddress? cd ~vpopmail/domains///subscribers strings * | cat -vte Regards, Allan On 2022-03-03 01:44, Boheme wrote: But I can’t unsubscribe using the CLI tools, and there is

Re: [qmailtoaster] Re: EZMLM list management issues

2022-03-02 Thread Boheme
But I can’t unsubscribe using the CLI tools, and there is no error output. -Sent from my Pip-Boy 3000 > On 3/03/2022, at 1:40 AM, qmailtoas...@dukat.dk wrote: > > Hi Chris > > Have you looked carefully for relevant information in web servers log files? > > - Allan > >> On 2022-03-02 10:01,

Re: [qmailtoaster] Re: EZMLM list management issues

2022-03-02 Thread qmailtoaster
Hi Chris Have you looked carefully for relevant information in web servers log files? - Allan On 2022-03-02 10:01, Chris Knight wrote: I’m still having ezmlm issues. I can’t delete users from the command line, from qmailadmin, or via email commands. Permissions on all files in the list

[qmailtoaster] Re: EZMLM list management issues

2022-03-02 Thread Chris Knight
I’m still having ezmlm issues. I can’t delete users from the command line, from qmailadmin, or via email commands. Permissions on all files in the list directory are vpopmail:vchkpw Has anyone else encountered this? -Chris > On Feb 6, 2022, at 7:45 AM, Chris Knight wrote: > > I’ve got a

Re: [qmailtoaster] Re: Error on greeting

2022-02-07 Thread Andreas Galatis
Hi Eric, they told me they couldn't delist my IP because on the website unet.de was no legal information of the owner. They need: 1. Servername indicating purpose of the server (mail.unet.de should be ok) 2. ip-address resolving to servername (ptr-record = mail.unet.de) 3. legal  info about

[qmailtoaster] Re: Error on greeting

2022-02-07 Thread Eric Broch
Did you contact rx.t-online.de ? I'd be interested in what they say. On 2/7/2022 12:29 AM, Andreas Galatis wrote: Hi, when sending out mails to t-online I get the following message: Connected to 194.25.134.8 but greeting failed. Remote host said: 554 IP=85.10.201.91 - A problem occurred. (Ask

[qmailtoaster] Re: Login with alias

2022-02-06 Thread Eric Broch
I'll take a look. On 2/6/2022 3:07 PM, Andreas Galatis wrote: Hi, I just migrated from an old Qmailtoaster to qmail-1.03-3.3.5.qt.md.el8.x86_64 I have clients login in with alis domainnames or users. It worked always but with the new toaster stopped working Is there a way to reenable login

[qmailtoaster] Re: Redirection of Links on qmailtoaster.com

2022-02-01 Thread Eric Broch
what are you typing in your browser and/or what links are you clicking on? On 2/1/2022 1:45 AM, Andreas Galatis wrote: Hello, when trying to get infos on qmailtoaster.com I get redirected from https://www.qmailtoaster.com/apache.html to https://albertchubakpolitician.ca/apache.html. This

[qmailtoaster] Re: Best Config for new server

2022-01-20 Thread Eric Broch
I'd personally go with Springdale and ECC. On 1/20/2022 4:06 AM, Andreas Galatis wrote: Hi all, I use the qmail-toaster since many years and are very glad with it. The system is very stable, secure and configurable with the features we need. I need to install a new Server for qmail and

Re: [qmailtoaster] Re: how to use ssl for individual domain

2021-10-25 Thread xaf
Remo a écrit le 25/10/2021 à 05:52 : > Well smtp on port 25 is not dovecot that’s what I was looking for. Dovecot act as MSA or SMTP relay, Qmail is the MTA. You can put anything in the relay port, but Qmail must listen to it. Using port 25 simplifies local conf. xaf

Re: [qmailtoaster] Re: how to use ssl for individual domain

2021-10-25 Thread xaf
Remo a écrit le 23/10/2021 à 22:33 : > I would be interested too but I see postfix and not qmail Eric do you happen > to have the steps for qmail?  As Eric says, it's Dovecot specific. My notes in attachment. xaf

Re: [qmailtoaster] Re: how to use ssl for individual domain

2021-10-24 Thread Remo
Well smtp on port 25 is not dovecot that’s what I was looking for. > Il giorno 24 ott 2021, alle ore 20:40, xaf ha scritto: > > Remo a écrit le 23/10/2021 à 22:33 : >> I would be interested too but I see postfix and not qmail Eric do you happen >> to have the steps for qmail? > > As Eric

Re: [qmailtoaster] Re: how to use ssl for individual domain

2021-10-23 Thread Eric Broch
The question (I think) was for dovecot. Qmail cannot do this...yet On 10/23/2021 2:33 PM, Remo wrote: I would be interested too but I see postfix and not qmail Eric do you happen to have the steps for qmail? Thanks Il giorno 23 ott 2021, alle ore 08:49, Eric Broch ha scritto: 

Re: [qmailtoaster] Re: how to use ssl for individual domain

2021-10-23 Thread Remo
I would be interested too but I see postfix and not qmail Eric do you happen to have the steps for qmail? Thanks > Il giorno 23 ott 2021, alle ore 08:49, Eric Broch > ha scritto: > >  > https://doc.dovecot.org/configuration_manual/dovecot_ssl_configuration/ > >

[qmailtoaster] Re: how to use ssl for individual domain

2021-10-23 Thread Eric Broch
https://doc.dovecot.org/configuration_manual/dovecot_ssl_configuration/ https://serverfault.com/questions/920436/set-up-certs-for-multiple-domains-in-postfix-and-dovecot On 10/22/2021 11:52 PM, Tahnan Al Anas wrote: Hello All, Anyone using ssl on dovecot for individual domain? For example,

Re: [qmailtoaster] Re: Qmail local delivery limit

2021-09-08 Thread Tahnan Al Anas
Xaf, this worked! Thank you so much. -- -- Best Regards Muhammad Tahnan Al Anas On Tue, Sep 7, 2021 at 6:35 PM Eric Broch wrote: > Thanks, xaf, that worked...not sure where concurrencyincoming came from. > > On 9/7/2021 1:30 AM, xaf wrote: > > Tahnan Al Anas a écrit le 07/09/2021 à 05:09 :

Re: [qmailtoaster] Re: Qmail local delivery limit

2021-09-07 Thread Eric Broch
Thanks, xaf, that worked...not sure where concurrencyincoming came from. On 9/7/2021 1:30 AM, xaf wrote: Tahnan Al Anas a écrit le 07/09/2021 à 05:09 : I did increased concorencyincoming to 100 then rebooted the server but still local is not getting increased. it stays 10/10

Re: [qmailtoaster] Re: Qmail local delivery limit

2021-09-07 Thread xaf
Tahnan Al Anas a écrit le 07/09/2021 à 05:09 : > I did increased concorencyincoming to 100 then rebooted the server but still > local is not getting increased. it stays 10/10 concurrencyincoming limits incoming SMTP sessions (qmail-smtpd logs). concurrencylocal limits simultaneous local

Re: [qmailtoaster] Re: Qmail local delivery limit

2021-09-07 Thread Qmail
Hi. Just a guess.. I recall an issue (many many years ago) with the CHKUSER limit's in TCP.SMTP that they could not exceed 200 ? maybe they default to 10 ? (mine are 50 and 10) /Finn Den 07-09-2021 kl. 07:26 skrev Tahnan Al Anas: I have checked there too before posting, tcp.smtp is set as

Re: [qmailtoaster] Re: Qmail local delivery limit

2021-09-06 Thread Tahnan Al Anas
I have checked there too before posting, tcp.smtp is set as below: still hacing limit of 10

Re: [qmailtoaster] Re: Qmail local delivery limit

2021-09-06 Thread Remo Mattei
It’s on the chkuser limit. You need to check your tcpsmtp file. Default is 10. I am not in front of my computer but I share it later. > Il giorno 6 set 2021, alle ore 20:10, Tahnan Al Anas ha > scritto: > >  > Hi Ericm, > > I did increased concorencyincoming to 100 then rebooted the

[qmailtoaster] Re: Qmail local delivery limit

2021-09-06 Thread Tahnan Al Anas
Hi Ericm, I did increased concorencyincoming to 100 then rebooted the server but still local is not getting increased. it stays 10/10 -- -- Best Regards Muhammad Tahnan Al Anas On Sat, Sep 4, 2021 at 4:18 PM Eric Broch wrote: > /var/qmail/control/concurrencyincoming > On 9/4/2021 12:41 AM,

[qmailtoaster] Re: Qmail local delivery limit

2021-09-04 Thread Eric Broch
/var/qmail/control/concurrencyincoming On 9/4/2021 12:41 AM, Tahnan Al Anas wrote: Dear Eriq, Can you please share which file we can edit to increase local delivery limit? I have foundlocal delivery limit isset to "status: local 0/10 remote 0/509" How can I increase it to 100 instead of 10

Re: [qmailtoaster] Re: QM7 - Issues connecting with Outlook for Android

2021-09-03 Thread Jeff Koch
Hi Eric - just added auth_debug=yes to the end of /etc/dovecot/toaster.conf. The dovecot log is showing auth: Debug Let me know when you test - thanks - Jeff On 9/3/2021 10:25 AM, Eric Broch wrote: When you get advanced logging for dovecot done let me know I'll test again. Here are my

Re: [qmailtoaster] Re: QM7 - Issues connecting with Outlook for Android

2021-09-03 Thread Eric Broch
When you get advanced logging for dovecot done let me know I'll test again. Here are my settings for squirrelmail in /etc/squirrelmail/config_local.php # imap server options $imapServerAddress  = 'localhost'; $imap_server_type   = 'dovecot'; # SM doesn't support starttls until v1.5.1, so we'll

  1   2   3   4   5   6   7   8   9   10   >