Re: [qmailtoaster] MySQL conversion to MariaDB question

2024-04-11 Thread Tony White

Hi Folks,
  MariaDB is no longer a drop in replacement for MySQL
as of v8.0 (MySQL). I moved to MariaDB fairly soon after
it was released. Many reasons to, but after Oracle bought them
I thought we might see it die or become another proprietary
product. Since then, changes in MySQL have not induced me to
return to it. There are many reasons, for me at least,
to continue with MariaDB. Many of which can be seen on the web
in the numerous comparisons. None of which MySQL seems to
stand out in.
Yes, QMT still works perfectly with MariaDB and in all my
instances better.

Thanks Eric. I had not realised the duality of the RPMs for the
two RDBMS. I imagined they would be the same. My bad.

Again Thank you Eric.

regards
Anthony White

On 12/4/24 00:54, Eric Broch wrote:
Honestly, I'm not sure. I simply chose MySQL because it was getting time consuming maintaining two versions of the rpm 
spec (qmail,vpopmail,ezmlm,vqadmin,qmailadmin) files one for Maria another for MySQL.


I believed and still believe that the vpopmail db from one will migrate 
seamlessly to the other.

On 4/11/2024 8:41 AM, William Silverstein wrote:

I am a little confused. Does this mean that Mariadb should not be used
with QMT?

On Thu, April 11, 2024 7:22 am, Eric Broch wrote:

I saw no reason to maintain two versions of the software.


On 4/11/2024 3:26 AM, Qmail wrote:

FYI

When I did roll on to Rocky8 and now Rocky 9 I found out that
the 10.3.35-MariaDB Server version - is  the last version compliant
with Qmail software.

I think recall it is libmysqlclient
that no longer is compliant and therefore causing errors.

/Finn


Den 11-04-2024 kl. 08:00 skrev Tony White:

Hi Eric,
   Is there a specific reason you do not offer both MySQL
and MariaDB during the install/setup of QMT please? This
is for Rocky 9 only 8 offers both.

--
regards
Anthony White


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com






-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] MySQL conversion to MariaDB question

2024-04-11 Thread Tony White

Thanks for the reply.

regards
Anthony White

On 12/4/24 00:22, Eric Broch wrote:

I saw no reason to maintain two versions of the software.


On 4/11/2024 3:26 AM, Qmail wrote:

FYI

When I did roll on to Rocky8 and now Rocky 9 I found out that
the 10.3.35-MariaDB Server version - is  the last version compliant with Qmail 
software.

I think recall it is libmysqlclient
that no longer is compliant and therefore causing errors.

/Finn


Den 11-04-2024 kl. 08:00 skrev Tony White:

Hi Eric,
   Is there a specific reason you do not offer both MySQL
and MariaDB during the install/setup of QMT please? This
is for Rocky 9 only 8 offers both.

--
regards
Anthony White



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



[qmailtoaster] MySQL conversion to MariaDB question

2024-04-11 Thread Tony White

Hi Eric,
  Is there a specific reason you do not offer both MySQL
and MariaDB during the install/setup of QMT please? This
is for Rocky 9 only 8 offers both.

--
regards
Anthony White


Re: [qmailtoaster] database query!

2024-04-10 Thread Tony White

Hi Eric,
  I am actually reading from the old server tables and inserting into
the new one. Hence the reason for asking. I do really want to mash the
add of ,4000c to the code. I will test it out tomorrow.

Thank you.

regards
Anthony White

On 11/4/24 02:01, Eric Broch wrote:

 /home/vpopmail/bin/vmoduser -q NOQUOTA u...@domain.tld

On 4/10/2024 9:57 AM, Tony White wrote:

Eric,
  That suggests I can update the table directly and not
actually add the second element ,4000C. Is this assumption
correct? I need to update clients with their current allocation
from the old server.

regards
Anthony White
On 11/4/24 01:37, Eric Broch wrote:

pw_shell=##S, #C

##S = default quota bytes

#C = max msg quota

Here is the actual code when adding a user if anyone reads 'c' and is 
interested.

  if (limits.defaultquota > 0) {
    if (limits.defaultmaxmsgcount > 0)
  snprintf (quota, sizeof(quota), "%lluS,%lluC", limits.defaultquota,
    limits.defaultmaxmsgcount);
    else
  snprintf (quota, sizeof(quota), "%lluS", limits.defaultquota);
  } else {
    if (limits.defaultmaxmsgcount > 0)
  snprintf (quota, sizeof(quota), "%lluC", limits.defaultmaxmsgcount);
    else
  strcpy (quota, "NOQUOTA");
  }


On 4/10/2024 9:11 AM, Tony White wrote:

Is it possible it is a max file handle count?
4000c = 16384d
I also do not understand why there is and S on
the first value.

regards
Anthony White
On 10/4/24 23:40, Qmail wrote:

Ahh, then I also get the ,4000C - hmmm

And when I look up the user in vqadmin it's shown under the column quota as  
4091324,4000C !!


Well I admit You did start out with a good question

Cheers
Finn

Den 10-04-2024 kl. 15:17 skrev Tony White:

Okay but I used the default values.
vadduser f...@ycs.com.au dickerydock
I did not specify the allocation of space

regards
Anthony White

On 10/4/24 22:04, Qmail wrote:

Hi again

Hmm

I tried this

./vadduser -q 4 test1@mydomain test

and

./vadduser -q NOQUOTA test@mydomain test


and there is NO ,4000C in my database


Whats on You vadduser line ? and I can try that if You want

/Finn



Den 10-04-2024 kl. 13:24 skrev Tony White:

Hi,
   Thanks for the response but all the users were
created with vadduser.

regards
Anthony White

On 10/4/24 19:08, Qmail wrote:

Hi Tony.

Just checked my database and I do not have that value in any of my entries.


but ',4000C' seems to me as a value from a list where values was inserted into 
the new database - just a guess ?


I'm running latest qmail on a Rocky 9 latest and greatest


/Finn


Den 10-04-2024 kl. 10:38 skrev Tony White:

Hi Folks,
   I have a question that I hope someone can answer please.
Below are entries from the old and new database.
What is the meaning of second numeric value 4000C in the new table?
Every entry has it but the first changes with the allocation of space.
The second does not. Trying to move clients from old database to new.

TIA :)

old database vpopmail

+---+-+
| pw_name   | pw_shell    |
+---+-+
| loanapples    | 5000    |

new database vpopmail.vpopmail

+--+-+
| pw_name  | pw_shell    |
+--+-+
| 1oanapples   | 41943040S,4000C |


--
regards
Anthony White



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com






-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com







Re: [qmailtoaster] database query!

2024-04-10 Thread Tony White

Eric,
  That suggests I can update the table directly and not
actually add the second element ,4000C. Is this assumption
correct? I need to update clients with their current allocation
from the old server.

regards
Anthony White

On 11/4/24 01:37, Eric Broch wrote:

pw_shell=##S, #C

##S = default quota bytes

#C = max msg quota

Here is the actual code when adding a user if anyone reads 'c' and is 
interested.

  if (limits.defaultquota > 0) {
    if (limits.defaultmaxmsgcount > 0)
  snprintf (quota, sizeof(quota), "%lluS,%lluC", limits.defaultquota,
    limits.defaultmaxmsgcount);
    else
  snprintf (quota, sizeof(quota), "%lluS", limits.defaultquota);
  } else {
    if (limits.defaultmaxmsgcount > 0)
  snprintf (quota, sizeof(quota), "%lluC", limits.defaultmaxmsgcount);
    else
  strcpy (quota, "NOQUOTA");
  }


On 4/10/2024 9:11 AM, Tony White wrote:

Is it possible it is a max file handle count?
4000c = 16384d
I also do not understand why there is and S on
the first value.

regards
Anthony White
On 10/4/24 23:40, Qmail wrote:

Ahh, then I also get the ,4000C - hmmm

And when I look up the user in vqadmin it's shown under the column quota as  
4091324,4000C !!


Well I admit You did start out with a good question

Cheers
Finn

Den 10-04-2024 kl. 15:17 skrev Tony White:

Okay but I used the default values.
vadduser f...@ycs.com.au dickerydock
I did not specify the allocation of space

regards
Anthony White

On 10/4/24 22:04, Qmail wrote:

Hi again

Hmm

I tried this

./vadduser -q 4 test1@mydomain test

and

./vadduser -q NOQUOTA test@mydomain test


and there is NO ,4000C in my database


Whats on You vadduser line ? and I can try that if You want

/Finn



Den 10-04-2024 kl. 13:24 skrev Tony White:

Hi,
   Thanks for the response but all the users were
created with vadduser.

regards
Anthony White

On 10/4/24 19:08, Qmail wrote:

Hi Tony.

Just checked my database and I do not have that value in any of my entries.


but ',4000C' seems to me as a value from a list where values was inserted into 
the new database - just a guess ?


I'm running latest qmail on a Rocky 9 latest and greatest


/Finn


Den 10-04-2024 kl. 10:38 skrev Tony White:

Hi Folks,
   I have a question that I hope someone can answer please.
Below are entries from the old and new database.
What is the meaning of second numeric value 4000C in the new table?
Every entry has it but the first changes with the allocation of space.
The second does not. Trying to move clients from old database to new.

TIA :)

old database vpopmail

+---+-+
| pw_name   | pw_shell    |
+---+-+
| loanapples    | 5000    |

new database vpopmail.vpopmail

+--+-+
| pw_name  | pw_shell    |
+--+-+
| 1oanapples   | 41943040S,4000C |


--
regards
Anthony White



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com






-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com





Re: [qmailtoaster] database query!

2024-04-10 Thread Tony White

Hi Eric,
  Understood thank you. So it is in fact in the vpopmail.c file not the 
vadduser.c.


regards
Anthony White

On 11/4/24 01:37, Eric Broch wrote:

pw_shell=##S, #C

##S = default quota bytes

#C = max msg quota

Here is the actual code when adding a user if anyone reads 'c' and is 
interested.

  if (limits.defaultquota > 0) {
    if (limits.defaultmaxmsgcount > 0)
  snprintf (quota, sizeof(quota), "%lluS,%lluC", limits.defaultquota,
    limits.defaultmaxmsgcount);
    else
  snprintf (quota, sizeof(quota), "%lluS", limits.defaultquota);
  } else {
    if (limits.defaultmaxmsgcount > 0)
  snprintf (quota, sizeof(quota), "%lluC", limits.defaultmaxmsgcount);
    else
  strcpy (quota, "NOQUOTA");
  }


On 4/10/2024 9:11 AM, Tony White wrote:

Is it possible it is a max file handle count?
4000c = 16384d
I also do not understand why there is and S on
the first value.

regards
Anthony White
On 10/4/24 23:40, Qmail wrote:

Ahh, then I also get the ,4000C - hmmm

And when I look up the user in vqadmin it's shown under the column quota as  
4091324,4000C !!


Well I admit You did start out with a good question

Cheers
Finn

Den 10-04-2024 kl. 15:17 skrev Tony White:

Okay but I used the default values.
vadduser f...@ycs.com.au dickerydock
I did not specify the allocation of space

regards
Anthony White

On 10/4/24 22:04, Qmail wrote:

Hi again

Hmm

I tried this

./vadduser -q 4 test1@mydomain test

and

./vadduser -q NOQUOTA test@mydomain test


and there is NO ,4000C in my database


Whats on You vadduser line ? and I can try that if You want

/Finn



Den 10-04-2024 kl. 13:24 skrev Tony White:

Hi,
   Thanks for the response but all the users were
created with vadduser.

regards
Anthony White

On 10/4/24 19:08, Qmail wrote:

Hi Tony.

Just checked my database and I do not have that value in any of my entries.


but ',4000C' seems to me as a value from a list where values was inserted into 
the new database - just a guess ?


I'm running latest qmail on a Rocky 9 latest and greatest


/Finn


Den 10-04-2024 kl. 10:38 skrev Tony White:

Hi Folks,
   I have a question that I hope someone can answer please.
Below are entries from the old and new database.
What is the meaning of second numeric value 4000C in the new table?
Every entry has it but the first changes with the allocation of space.
The second does not. Trying to move clients from old database to new.

TIA :)

old database vpopmail

+---+-+
| pw_name   | pw_shell    |
+---+-+
| loanapples    | 5000    |

new database vpopmail.vpopmail

+--+-+
| pw_name  | pw_shell    |
+--+-+
| 1oanapples   | 41943040S,4000C |


--
regards
Anthony White



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com






-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com





Re: [qmailtoaster] database query!

2024-04-10 Thread Tony White

Is it possible it is a max file handle count?
4000c = 16384d
I also do not understand why there is and S on
the first value.

regards
Anthony White

On 10/4/24 23:40, Qmail wrote:

Ahh, then I also get the ,4000C - hmmm

And when I look up the user in vqadmin it's shown under the column quota as  
4091324,4000C !!


Well I admit You did start out with a good question

Cheers
Finn

Den 10-04-2024 kl. 15:17 skrev Tony White:

Okay but I used the default values.
vadduser f...@ycs.com.au dickerydock
I did not specify the allocation of space

regards
Anthony White

On 10/4/24 22:04, Qmail wrote:

Hi again

Hmm

I tried this

./vadduser -q 4 test1@mydomain test

and

./vadduser -q NOQUOTA test@mydomain test


and there is NO ,4000C in my database


Whats on You vadduser line ? and I can try that if You want

/Finn



Den 10-04-2024 kl. 13:24 skrev Tony White:

Hi,
   Thanks for the response but all the users were
created with vadduser.

regards
Anthony White

On 10/4/24 19:08, Qmail wrote:

Hi Tony.

Just checked my database and I do not have that value in any of my entries.


but ',4000C' seems to me as a value from a list where values was inserted into 
the new database - just a guess ?


I'm running latest qmail on a Rocky 9 latest and greatest


/Finn


Den 10-04-2024 kl. 10:38 skrev Tony White:

Hi Folks,
   I have a question that I hope someone can answer please.
Below are entries from the old and new database.
What is the meaning of second numeric value 4000C in the new table?
Every entry has it but the first changes with the allocation of space.
The second does not. Trying to move clients from old database to new.

TIA :)

old database vpopmail

+---+-+
| pw_name   | pw_shell    |
+---+-+
| loanapples    | 5000    |

new database vpopmail.vpopmail

+--+-+
| pw_name  | pw_shell    |
+--+-+
| 1oanapples   | 41943040S,4000C |


--
regards
Anthony White



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com






-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] database query!

2024-04-10 Thread Tony White

Okay but I used the default values.
vadduser f...@ycs.com.au dickerydock
I did not specify the allocation of space

regards
Anthony White

On 10/4/24 22:04, Qmail wrote:

Hi again

Hmm

I tried this

./vadduser -q 4 test1@mydomain test

and

./vadduser -q NOQUOTA test@mydomain test


and there is NO ,4000C in my database


Whats on You vadduser line ? and I can try that if You want

/Finn



Den 10-04-2024 kl. 13:24 skrev Tony White:

Hi,
   Thanks for the response but all the users were
created with vadduser.

regards
Anthony White

On 10/4/24 19:08, Qmail wrote:

Hi Tony.

Just checked my database and I do not have that value in any of my entries.


but ',4000C' seems to me as a value from a list where values was inserted into 
the new database - just a guess ?


I'm running latest qmail on a Rocky 9 latest and greatest


/Finn


Den 10-04-2024 kl. 10:38 skrev Tony White:

Hi Folks,
   I have a question that I hope someone can answer please.
Below are entries from the old and new database.
What is the meaning of second numeric value 4000C in the new table?
Every entry has it but the first changes with the allocation of space.
The second does not. Trying to move clients from old database to new.

TIA :)

old database vpopmail

+---+-+
| pw_name   | pw_shell    |
+---+-+
| loanapples    | 5000    |

new database vpopmail.vpopmail

+--+-+
| pw_name  | pw_shell    |
+--+-+
| 1oanapples   | 41943040S,4000C |


--
regards
Anthony White



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com






-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] database query!

2024-04-10 Thread Tony White

Hi,
  Thanks for the response but all the users were
created with vadduser.

regards
Anthony White

On 10/4/24 19:08, Qmail wrote:

Hi Tony.

Just checked my database and I do not have that value in any of my entries.


but ',4000C' seems to me as a value from a list where values was inserted into 
the new database - just a guess ?


I'm running latest qmail on a Rocky 9 latest and greatest


/Finn


Den 10-04-2024 kl. 10:38 skrev Tony White:

Hi Folks,
   I have a question that I hope someone can answer please.
Below are entries from the old and new database.
What is the meaning of second numeric value 4000C in the new table?
Every entry has it but the first changes with the allocation of space.
The second does not. Trying to move clients from old database to new.

TIA :)

old database vpopmail

+---+-+
| pw_name   | pw_shell    |
+---+-+
| loanapples    | 5000    |

new database vpopmail.vpopmail

+--+-+
| pw_name  | pw_shell    |
+--+-+
| 1oanapples   | 41943040S,4000C |


--
regards
Anthony White



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




[qmailtoaster] database query!

2024-04-10 Thread Tony White

Hi Folks,
  I have a question that I hope someone can answer please.
Below are entries from the old and new database.
What is the meaning of second numeric value 4000C in the new table?
Every entry has it but the first changes with the allocation of space.
The second does not. Trying to move clients from old database to new.

TIA :)

old database vpopmail

+---+-+
| pw_name   | pw_shell    |
+---+-+
| loanapples    | 5000    |

new database vpopmail.vpopmail

+--+-+
| pw_name  | pw_shell    |
+--+-+
| 1oanapples   | 41943040S,4000C |


--
regards
Anthony White


Re: [qmailtoaster] Changed out the servers

2024-04-01 Thread Tony White

Hi Remo,
  Short answer is no the is no file or folder
under Maildir for dovecot.
  I am transferring from Centos 6.11 to RL 8. now 9.

regards
Anthony White

On 1/4/24 18:07, Remo Mattei wrote:

Hi and you do have the Dovecot index in your folder under the maildir?

—
Ciao Remo


On lunedì, apr 01, 2024 at 00:05, Tony Whitemailto:t...@ycs.com.au)>  wrote:
Hi,
This is getting beyond a joke.
I have just rebuilt it all again using RL 9.3. The server runs
perfectly but when starting my Thunderbird client I get thousands
of emails again. I made sure the time and date stamps on both sides
were identical but it only seems to happen with imap.
I cannot figure out why this is going on and have reverted back
the the original server.
Any help is greatly appreciated as I really do need to get up
and running on RL 9.

TIA :(

regards Anthony White
On 1/4/24 04:04, Tonix wrote:

I remember I had similar problems when, long time ago, I switched servers.

It is generally caused by the change in state of the messages. Usually messages 
status (unread, read) depends on files timestamps, which must be carefully 
preserved when messages are copied to another server.

Tonino


Il 31/03/2024 12:00, Tony White ha scritto:

Hi Folks,
I have changed out the servers and now
clients are getting all their emails again.
Did I do something wrong or should I have
expected this phenomena?

TIA ;)

--
regards
Anthony White




Re: [qmailtoaster] Changed out the servers

2024-04-01 Thread Tony White

Hi,
  This is getting beyond a joke.
I have just rebuilt it all again using RL 9.3. The server runs
perfectly but when starting my Thunderbird client I get thousands
of emails again. I made sure the time and date stamps on both sides
were identical but it only seems to happen with imap.
  I cannot figure out why this is going on and have reverted back
the the original server.
  Any help is greatly appreciated as I really do need to get up
and running on RL 9.

TIA :(

regards
Anthony White

On 1/4/24 04:04, Tonix wrote:

I remember I had similar problems when, long time ago, I switched servers.

It is generally caused by the change in state of the messages. Usually messages status (unread, read) depends on files 
timestamps, which must be carefully preserved when messages are copied to another server.


Tonino


Il 31/03/2024 12:00, Tony White ha scritto:

Hi Folks,
  I have changed out the servers and now
clients are getting all their emails again.
Did I do something wrong or should I have
expected this phenomena?

TIA ;)

--
regards
Anthony White





[qmailtoaster] Changed out the servers

2024-03-31 Thread Tony White

Hi Folks,
  I have changed out the servers and now
clients are getting all their emails again.
Did I do something wrong or should I have
expected this phenomena?

TIA ;)

--
regards
Anthony White


Re: [qmailtoaster] web email/roundcube/squirrelamil

2024-03-30 Thread Tony White

Hi Eric,
  Thank you for all your help today.
I believe the last install of dovecot-mysql has resolved the issue.
I can now login using any of the webmail programs.

  Really do appreciate your efforts and those of Remo not only to
me but to us all.

regards
Anthony White

On 30/3/24 17:42, Eric Broch wrote:


cat /var/log/dovecot.log

If you don't see anything, dovecot has authorization debug


On 3/30/2024 12:40 AM, Tony White wrote:

Hi Eric,
  Yup all good and the new tld are correct now.
The only issue I now have is I am unable to login
on any domain and user.
Both Squirrelmail and RoundCube give unknown user
or password.
Restarted httpd, dovecot, qmail, php-fpm all to no avail.


ssl_request_log
[30/Mar/2024:17:34:50 +1100] 10.2.1.5 TLSv1.3 TLS_AES_256_GCM_SHA384 "POST 
/email/?_task=login HTTP/1.1" 5399
[30/Mar/2024:17:34:55 +1100] 10.2.1.5 TLSv1.3 TLS_AES_256_GCM_SHA384 "GET 
/email/skins/elastic/deps/bootstrap.min.css?s=1705745714 HTTP/1.1" 160347
[30/Mar/2024:17:34:55 +1100] 10.2.1.5 TLSv1.3 TLS_AES_256_GCM_SHA384 "GET 
/email/skins/elastic/styles/styles.min.css?s=1705745704 HTTP/1.1" 120302
[30/Mar/2024:17:34:55 +1100] 10.2.1.5 TLSv1.3 TLS_AES_256_GCM_SHA384 "GET 
/email/plugins/jqueryui/themes/elastic/jquery-ui.min.css?s=1705745704 HTTP/1.1" 29309

[30/Mar/2024:17:35:15 +1100] 10.2.1.5 TLSv1.3 TLS_AES_256_GCM_SHA384 "-" -


ssl_access_log
10.2.1.5 - - [30/Mar/2024:17:34:50 +1100] "POST /email/?_task=login HTTP/1.1" 
401 5399
10.2.1.5 - - [30/Mar/2024:17:34:55 +1100] "GET 
/email/skins/elastic/deps/bootstrap.min.css?s=1705745714 HTTP/1.1" 200 160347
10.2.1.5 - - [30/Mar/2024:17:34:55 +1100] "GET 
/email/skins/elastic/styles/styles.min.css?s=1705745704 HTTP/1.1" 200 120302
10.2.1.5 - - [30/Mar/2024:17:34:55 +1100] "GET /email/plugins/jqueryui/themes/elastic/jquery-ui.min.css?s=1705745704 
HTTP/1.1" 200 29309

10.2.1.5 - - [30/Mar/2024:17:35:15 +1100] "-" 408 -

ssl_error_log
[Sat Mar 30 15:36:08.268711 2024] [ssl:warn] [pid 1073:tid 140572332087616] AH01909: axti.au:443:0 server certificate 
does NOT include an ID which matches the server name
[Sat Mar 30 15:36:08.321262 2024] [ssl:warn] [pid 1073:tid 140572332087616] AH01909: axti.au:443:0 server certificate 
does NOT include an ID which matches the server name



regards
Anthony White
On 30/3/24 17:16, Eric Broch wrote:


Nothing this script does ruins the original tables. So, you could make adjustments to it and rerun after dropping the 
vpopmail table of course. You could also modify it just to list the domain tables after they've had the '_' replaced 
with a '.' to see if they all look correct with the new domain_name variable set.


On 3/30/2024 12:11 AM, Tony White wrote:

Hi Eric,

  This seems to fix it, your opinion please...

ycs_com_au
domain_name=`echo $1 | sed -e 's/_/./g'`
ycs.com.au

regards
Anthony White
On 30/3/24 17:06, Tony White wrote:

Hi,
  Eric it seems this piece of code only convert the last . in a tld and leaves 
any
others a -.

#!/bin/sh
# use tld as ycs_com_au -> ycs-com.au
  echo $1
  domain_name=`echo $1 | sed -e 's/\(.*\)_/\1./' -e 's/_/-/g'`
  echo $domain_name;

This explains why all my tld's have - and . and no domain is recognised.

I will try to fix it now.
If I rerun it would you suggest I manually drop the new vpopmail table first?

regards
Anthony White
On 30/3/24 16:24, Eric Broch wrote:


   wget -P /etc/dovecot 
https://raw.githubusercontent.com/qmtoaster/scripts/master/dovecot.conf
   wget -P /etc/dovecot 
https://raw.githubusercontent.com/qmtoaster/scripts/master/dovecot-sql.conf.ext

On 3/29/2024 11:16 PM, Tony White wrote:

Hi again,
  I have just completed following th ManyDomain text and found that
Neither '/etc/dovecot/dovecot-sql.conf.ext' or '/etc/dovecot/toaster.conf'
exist.
  Do I simply create them or has the install failed somehow?

TIA :)

regards
Anthony White
On 30/3/24 15:30, Remo Mattei wrote:



—
Ciao Remo

On venerdì, mar 29, 2024 at 21:10, Tony White  wrote:
Hi Folks,
  You are correct in both but this is the first time
I have a working server. I will be moving to ManyDomains next
after a snapshot. Id=f that works properly then upgrading to
RL 9 is next. Baby steps for me here. Tried too many times to
get it all working properly.

regards Anthony White

On 30/3/24 14:47, Eric Broch wrote:


I would reconsider and go with Many Domain option. The domain table option 
uses Dovecot binaries that can
never be updated since Dovecot has eliminated the vpopmail driver from the 
source. I'm not sure why we (qmt
community) ever decided against the Many Domain option. It is so much 
easier to interact with.

On 3/29/2024 9:32 PM, Tony White wrote:

Hi Eric,
  Okay rebuilt using RL 8.9, not a ManyDomain, and all seemed to go well 
until the migration from the old
server to the new. Everything works until dovecot which fails w

Re: [qmailtoaster] web email/roundcube/squirrelamil

2024-03-30 Thread Tony White

Hi,
  Seems I do not have a /etc/dovecot/toaster.conf file anywhere.
Do I just create it?

regards
Anthony White

On 30/3/24 17:42, Eric Broch wrote:


cat /var/log/dovecot.log

If you don't see anything, dovecot has authorization debug


On 3/30/2024 12:40 AM, Tony White wrote:

Hi Eric,
  Yup all good and the new tld are correct now.
The only issue I now have is I am unable to login
on any domain and user.
Both Squirrelmail and RoundCube give unknown user
or password.
Restarted httpd, dovecot, qmail, php-fpm all to no avail.


ssl_request_log
[30/Mar/2024:17:34:50 +1100] 10.2.1.5 TLSv1.3 TLS_AES_256_GCM_SHA384 "POST 
/email/?_task=login HTTP/1.1" 5399
[30/Mar/2024:17:34:55 +1100] 10.2.1.5 TLSv1.3 TLS_AES_256_GCM_SHA384 "GET 
/email/skins/elastic/deps/bootstrap.min.css?s=1705745714 HTTP/1.1" 160347
[30/Mar/2024:17:34:55 +1100] 10.2.1.5 TLSv1.3 TLS_AES_256_GCM_SHA384 "GET 
/email/skins/elastic/styles/styles.min.css?s=1705745704 HTTP/1.1" 120302
[30/Mar/2024:17:34:55 +1100] 10.2.1.5 TLSv1.3 TLS_AES_256_GCM_SHA384 "GET 
/email/plugins/jqueryui/themes/elastic/jquery-ui.min.css?s=1705745704 HTTP/1.1" 29309

[30/Mar/2024:17:35:15 +1100] 10.2.1.5 TLSv1.3 TLS_AES_256_GCM_SHA384 "-" -


ssl_access_log
10.2.1.5 - - [30/Mar/2024:17:34:50 +1100] "POST /email/?_task=login HTTP/1.1" 
401 5399
10.2.1.5 - - [30/Mar/2024:17:34:55 +1100] "GET 
/email/skins/elastic/deps/bootstrap.min.css?s=1705745714 HTTP/1.1" 200 160347
10.2.1.5 - - [30/Mar/2024:17:34:55 +1100] "GET 
/email/skins/elastic/styles/styles.min.css?s=1705745704 HTTP/1.1" 200 120302
10.2.1.5 - - [30/Mar/2024:17:34:55 +1100] "GET /email/plugins/jqueryui/themes/elastic/jquery-ui.min.css?s=1705745704 
HTTP/1.1" 200 29309

10.2.1.5 - - [30/Mar/2024:17:35:15 +1100] "-" 408 -

ssl_error_log
[Sat Mar 30 15:36:08.268711 2024] [ssl:warn] [pid 1073:tid 140572332087616] AH01909: axti.au:443:0 server certificate 
does NOT include an ID which matches the server name
[Sat Mar 30 15:36:08.321262 2024] [ssl:warn] [pid 1073:tid 140572332087616] AH01909: axti.au:443:0 server certificate 
does NOT include an ID which matches the server name



regards
Anthony White
On 30/3/24 17:16, Eric Broch wrote:


Nothing this script does ruins the original tables. So, you could make adjustments to it and rerun after dropping the 
vpopmail table of course. You could also modify it just to list the domain tables after they've had the '_' replaced 
with a '.' to see if they all look correct with the new domain_name variable set.


On 3/30/2024 12:11 AM, Tony White wrote:

Hi Eric,

  This seems to fix it, your opinion please...

ycs_com_au
domain_name=`echo $1 | sed -e 's/_/./g'`
ycs.com.au

regards
Anthony White
On 30/3/24 17:06, Tony White wrote:

Hi,
  Eric it seems this piece of code only convert the last . in a tld and leaves 
any
others a -.

#!/bin/sh
# use tld as ycs_com_au -> ycs-com.au
  echo $1
  domain_name=`echo $1 | sed -e 's/\(.*\)_/\1./' -e 's/_/-/g'`
  echo $domain_name;

This explains why all my tld's have - and . and no domain is recognised.

I will try to fix it now.
If I rerun it would you suggest I manually drop the new vpopmail table first?

regards
Anthony White
On 30/3/24 16:24, Eric Broch wrote:


   wget -P /etc/dovecot 
https://raw.githubusercontent.com/qmtoaster/scripts/master/dovecot.conf
   wget -P /etc/dovecot 
https://raw.githubusercontent.com/qmtoaster/scripts/master/dovecot-sql.conf.ext

On 3/29/2024 11:16 PM, Tony White wrote:

Hi again,
  I have just completed following th ManyDomain text and found that
Neither '/etc/dovecot/dovecot-sql.conf.ext' or '/etc/dovecot/toaster.conf'
exist.
  Do I simply create them or has the install failed somehow?

TIA :)

regards
Anthony White
On 30/3/24 15:30, Remo Mattei wrote:



—
Ciao Remo

On venerdì, mar 29, 2024 at 21:10, Tony White  wrote:
Hi Folks,
  You are correct in both but this is the first time
I have a working server. I will be moving to ManyDomains next
after a snapshot. Id=f that works properly then upgrading to
RL 9 is next. Baby steps for me here. Tried too many times to
get it all working properly.

regards Anthony White

On 30/3/24 14:47, Eric Broch wrote:


I would reconsider and go with Many Domain option. The domain table option 
uses Dovecot binaries that can
never be updated since Dovecot has eliminated the vpopmail driver from the 
source. I'm not sure why we (qmt
community) ever decided against the Many Domain option. It is so much 
easier to interact with.

On 3/29/2024 9:32 PM, Tony White wrote:

Hi Eric,
  Okay rebuilt using RL 8.9, not a ManyDomain, and all seemed to go well 
until the migration from the old
server to the new. Everything works until dovecot which fails without 
error. There is no process for dovecot
and I cannot see anything in the log file to explain the failure.

regards Anthony White
On 30/3/24 11

Re: [qmailtoaster] web email/roundcube/squirrelamil

2024-03-30 Thread Tony White

Hi Eric,
  Yup all good and the new tld are correct now.
The only issue I now have is I am unable to login
on any domain and user.
Both Squirrelmail and RoundCube give unknown user
or password.
Restarted httpd, dovecot, qmail, php-fpm all to no avail.


ssl_request_log
[30/Mar/2024:17:34:50 +1100] 10.2.1.5 TLSv1.3 TLS_AES_256_GCM_SHA384 "POST 
/email/?_task=login HTTP/1.1" 5399
[30/Mar/2024:17:34:55 +1100] 10.2.1.5 TLSv1.3 TLS_AES_256_GCM_SHA384 "GET 
/email/skins/elastic/deps/bootstrap.min.css?s=1705745714 HTTP/1.1" 160347
[30/Mar/2024:17:34:55 +1100] 10.2.1.5 TLSv1.3 TLS_AES_256_GCM_SHA384 "GET 
/email/skins/elastic/styles/styles.min.css?s=1705745704 HTTP/1.1" 120302
[30/Mar/2024:17:34:55 +1100] 10.2.1.5 TLSv1.3 TLS_AES_256_GCM_SHA384 "GET 
/email/plugins/jqueryui/themes/elastic/jquery-ui.min.css?s=1705745704 HTTP/1.1" 29309

[30/Mar/2024:17:35:15 +1100] 10.2.1.5 TLSv1.3 TLS_AES_256_GCM_SHA384 "-" -


ssl_access_log
10.2.1.5 - - [30/Mar/2024:17:34:50 +1100] "POST /email/?_task=login HTTP/1.1" 
401 5399
10.2.1.5 - - [30/Mar/2024:17:34:55 +1100] "GET 
/email/skins/elastic/deps/bootstrap.min.css?s=1705745714 HTTP/1.1" 200 160347
10.2.1.5 - - [30/Mar/2024:17:34:55 +1100] "GET 
/email/skins/elastic/styles/styles.min.css?s=1705745704 HTTP/1.1" 200 120302
10.2.1.5 - - [30/Mar/2024:17:34:55 +1100] "GET /email/plugins/jqueryui/themes/elastic/jquery-ui.min.css?s=1705745704 
HTTP/1.1" 200 29309

10.2.1.5 - - [30/Mar/2024:17:35:15 +1100] "-" 408 -

ssl_error_log
[Sat Mar 30 15:36:08.268711 2024] [ssl:warn] [pid 1073:tid 140572332087616] AH01909: axti.au:443:0 server certificate does 
NOT include an ID which matches the server name
[Sat Mar 30 15:36:08.321262 2024] [ssl:warn] [pid 1073:tid 140572332087616] AH01909: axti.au:443:0 server certificate does 
NOT include an ID which matches the server name



regards
Anthony White

On 30/3/24 17:16, Eric Broch wrote:


Nothing this script does ruins the original tables. So, you could make adjustments to it and rerun after dropping the 
vpopmail table of course. You could also modify it just to list the domain tables after they've had the '_' replaced with 
a '.' to see if they all look correct with the new domain_name variable set.


On 3/30/2024 12:11 AM, Tony White wrote:

Hi Eric,

  This seems to fix it, your opinion please...

ycs_com_au
domain_name=`echo $1 | sed -e 's/_/./g'`
ycs.com.au

regards
Anthony White
On 30/3/24 17:06, Tony White wrote:

Hi,
  Eric it seems this piece of code only convert the last . in a tld and leaves 
any
others a -.

#!/bin/sh
# use tld as ycs_com_au -> ycs-com.au
  echo $1
  domain_name=`echo $1 | sed -e 's/\(.*\)_/\1./' -e 's/_/-/g'`
  echo $domain_name;

This explains why all my tld's have - and . and no domain is recognised.

I will try to fix it now.
If I rerun it would you suggest I manually drop the new vpopmail table first?

regards
Anthony White
On 30/3/24 16:24, Eric Broch wrote:


   wget -P /etc/dovecot 
https://raw.githubusercontent.com/qmtoaster/scripts/master/dovecot.conf
   wget -P /etc/dovecot 
https://raw.githubusercontent.com/qmtoaster/scripts/master/dovecot-sql.conf.ext

On 3/29/2024 11:16 PM, Tony White wrote:

Hi again,
  I have just completed following th ManyDomain text and found that
Neither '/etc/dovecot/dovecot-sql.conf.ext' or '/etc/dovecot/toaster.conf'
exist.
  Do I simply create them or has the install failed somehow?

TIA :)

regards
Anthony White
On 30/3/24 15:30, Remo Mattei wrote:



—
Ciao Remo

On venerdì, mar 29, 2024 at 21:10, Tony White  wrote:
Hi Folks,
  You are correct in both but this is the first time
I have a working server. I will be moving to ManyDomains next
after a snapshot. Id=f that works properly then upgrading to
RL 9 is next. Baby steps for me here. Tried too many times to
get it all working properly.

regards Anthony White

On 30/3/24 14:47, Eric Broch wrote:


I would reconsider and go with Many Domain option. The domain table option 
uses Dovecot binaries that can never
be updated since Dovecot has eliminated the vpopmail driver from the 
source. I'm not sure why we (qmt
community) ever decided against the Many Domain option. It is so much 
easier to interact with.

On 3/29/2024 9:32 PM, Tony White wrote:

Hi Eric,
  Okay rebuilt using RL 8.9, not a ManyDomain, and all seemed to go well 
until the migration from the old
server to the new. Everything works until dovecot which fails without 
error. There is no process for dovecot
and I cannot see anything in the log file to explain the failure.

regards Anthony White
On 30/3/24 11:56, Eric Broch wrote:


If you're installing on EL9 you have no choice, all the packages are 
Many-Domain. You'll have to dump the
vpopmail db on the old server, copy it to the new server, import the db 
into vpopmail mysql db and run the
script to convert the db to

Re: [qmailtoaster] web email/roundcube/squirrelamil

2024-03-30 Thread Tony White

Hi Eric,

  This seems to fix it, your opinion please...

ycs_com_au
domain_name=`echo $1 | sed -e 's/_/./g'`
ycs.com.au

regards
Anthony White

On 30/3/24 17:06, Tony White wrote:

Hi,
  Eric it seems this piece of code only convert the last . in a tld and leaves 
any
others a -.

#!/bin/sh
# use tld as ycs_com_au -> ycs-com.au
  echo $1
  domain_name=`echo $1 | sed -e 's/\(.*\)_/\1./' -e 's/_/-/g'`
  echo $domain_name;

This explains why all my tld's have - and . and no domain is recognised.

I will try to fix it now.
If I rerun it would you suggest I manually drop the new vpopmail table first?

regards
Anthony White
On 30/3/24 16:24, Eric Broch wrote:


   wget -P /etc/dovecot 
https://raw.githubusercontent.com/qmtoaster/scripts/master/dovecot.conf
   wget -P /etc/dovecot 
https://raw.githubusercontent.com/qmtoaster/scripts/master/dovecot-sql.conf.ext

On 3/29/2024 11:16 PM, Tony White wrote:

Hi again,
  I have just completed following th ManyDomain text and found that
Neither '/etc/dovecot/dovecot-sql.conf.ext' or '/etc/dovecot/toaster.conf'
exist.
  Do I simply create them or has the install failed somehow?

TIA :)

regards
Anthony White
On 30/3/24 15:30, Remo Mattei wrote:



—
Ciao Remo

On venerdì, mar 29, 2024 at 21:10, Tony White  wrote:
Hi Folks,
  You are correct in both but this is the first time
I have a working server. I will be moving to ManyDomains next
after a snapshot. Id=f that works properly then upgrading to
RL 9 is next. Baby steps for me here. Tried too many times to
get it all working properly.

regards Anthony White

On 30/3/24 14:47, Eric Broch wrote:


I would reconsider and go with Many Domain option. The domain table option 
uses Dovecot binaries that can never
be updated since Dovecot has eliminated the vpopmail driver from the 
source. I'm not sure why we (qmt community)
ever decided against the Many Domain option. It is so much easier to 
interact with.

On 3/29/2024 9:32 PM, Tony White wrote:

Hi Eric,
  Okay rebuilt using RL 8.9, not a ManyDomain, and all seemed to go well 
until the migration from the old
server to the new. Everything works until dovecot which fails without 
error. There is no process for dovecot
and I cannot see anything in the log file to explain the failure.

regards Anthony White
On 30/3/24 11:56, Eric Broch wrote:


If you're installing on EL9 you have no choice, all the packages are 
Many-Domain. You'll have to dump the
vpopmail db on the old server, copy it to the new server, import the db 
into vpopmail mysql db and run the
script to convert the db to many domain found here 
<http://www.qmailtoaster.org/manydom.html>. It will leave
the old vpopmail domain_tld table entries in place creating a new vpopmail 
table in its stead.



On 3/29/2024 6:45 PM, Tony White wrote:

Hi Eric,
  In your opinion should I not do a many domain
install first then migrate to many domains? I
seem to have problems doing many domains then
moving my client domains over.

TIA :)

regards Anthony White
On 30/3/24 02:25, Eric Broch wrote:


It should, although 9 is strictly 'Many-Domain' so vpopmail database will 
need to be converted. Many domain's
conversion - QMT (qmailtoaster.org) <https://qmailtoaster.org/manydom.html>

Rocky 8 & 9 both use PHP8.1

Stock Squirrelmail might have issues

PHP upgrade 7.x to 8.1 - QmailToaster 
<http://wiki.qmailtoaster.org/index.php?title=PHP_upgrade_7.x_to_8.1>



    On 3/29/2024 9:09 AM, Tony White wrote:

Eric,
  Does the migrate.html direction hold for Rocky 9?

regards Anthony White
On 30/3/24 02:02, Eric Broch wrote:

Yes, email address and password. If both are problematic I would assume the 
problem is not specific to
either one but would point to Apache or the server itself. Would you agree?

    On 3/29/2024 8:54 AM, Tony White wrote:

Hi Eric,
  Yes thank you, I have tried that and more.
Roundcube login takes forever to quit with loading then fails.
Squirrelmail just times out. In both cases
  I presume the login for both is still email address nnd password?

regards
Anthony White
On 30/3/24 01:26, Eric Broch wrote:

Perhaps this might help:

php - apache proxy_fcgi - The timeout specified has expired - Error 
dispatching request - Stack Overflow

<https://stackoverflow.com/questions/46594731/apache-proxy-fcgi-the-timeout-specified-has-expired-error-dispatching-reques>

On 3/29/2024 8:06 AM, Tony White wrote:

The timeout specified has expired: [client 10.2.1.5:53966] AH01075: Error 
dispatching request to
















Re: [qmailtoaster] web email/roundcube/squirrelamil

2024-03-30 Thread Tony White

Hi,
  Eric it seems this piece of code only convert the last . in a tld and leaves 
any
others a -.

#!/bin/sh
# use tld as ycs_com_au -> ycs-com.au
  echo $1
  domain_name=`echo $1 | sed -e 's/\(.*\)_/\1./' -e 's/_/-/g'`
  echo $domain_name;

This explains why all my tld's have - and . and no domain is recognised.

I will try to fix it now.
If I rerun it would you suggest I manually drop the new vpopmail table first?

regards
Anthony White

On 30/3/24 16:24, Eric Broch wrote:


   wget -P /etc/dovecot 
https://raw.githubusercontent.com/qmtoaster/scripts/master/dovecot.conf
   wget -P /etc/dovecot 
https://raw.githubusercontent.com/qmtoaster/scripts/master/dovecot-sql.conf.ext

On 3/29/2024 11:16 PM, Tony White wrote:

Hi again,
  I have just completed following th ManyDomain text and found that
Neither '/etc/dovecot/dovecot-sql.conf.ext' or '/etc/dovecot/toaster.conf'
exist.
  Do I simply create them or has the install failed somehow?

TIA :)

regards
Anthony White
On 30/3/24 15:30, Remo Mattei wrote:



—
Ciao Remo

On venerdì, mar 29, 2024 at 21:10, Tony White  wrote:
Hi Folks,
  You are correct in both but this is the first time
I have a working server. I will be moving to ManyDomains next
after a snapshot. Id=f that works properly then upgrading to
RL 9 is next. Baby steps for me here. Tried too many times to
get it all working properly.

regards Anthony White

On 30/3/24 14:47, Eric Broch wrote:


I would reconsider and go with Many Domain option. The domain table option 
uses Dovecot binaries that can never be
updated since Dovecot has eliminated the vpopmail driver from the source. 
I'm not sure why we (qmt community) ever
decided against the Many Domain option. It is so much easier to interact 
with.

On 3/29/2024 9:32 PM, Tony White wrote:

Hi Eric,
  Okay rebuilt using RL 8.9, not a ManyDomain, and all seemed to go well 
until the migration from the old
server to the new. Everything works until dovecot which fails without 
error. There is no process for dovecot
and I cannot see anything in the log file to explain the failure.

regards Anthony White
On 30/3/24 11:56, Eric Broch wrote:


If you're installing on EL9 you have no choice, all the packages are 
Many-Domain. You'll have to dump the
vpopmail db on the old server, copy it to the new server, import the db 
into vpopmail mysql db and run the
script to convert the db to many domain found here 
<http://www.qmailtoaster.org/manydom.html>. It will leave the
old vpopmail domain_tld table entries in place creating a new vpopmail 
table in its stead.



On 3/29/2024 6:45 PM, Tony White wrote:

Hi Eric,
  In your opinion should I not do a many domain
install first then migrate to many domains? I
seem to have problems doing many domains then
moving my client domains over.

TIA :)

regards Anthony White
On 30/3/24 02:25, Eric Broch wrote:


It should, although 9 is strictly 'Many-Domain' so vpopmail database will 
need to be converted. Many domain's
conversion - QMT (qmailtoaster.org) <https://qmailtoaster.org/manydom.html>

Rocky 8 & 9 both use PHP8.1

Stock Squirrelmail might have issues

PHP upgrade 7.x to 8.1 - QmailToaster 
<http://wiki.qmailtoaster.org/index.php?title=PHP_upgrade_7.x_to_8.1>



    On 3/29/2024 9:09 AM, Tony White wrote:

Eric,
  Does the migrate.html direction hold for Rocky 9?

regards Anthony White
On 30/3/24 02:02, Eric Broch wrote:

Yes, email address and password. If both are problematic I would assume the 
problem is not specific to
either one but would point to Apache or the server itself. Would you agree?

    On 3/29/2024 8:54 AM, Tony White wrote:

Hi Eric,
  Yes thank you, I have tried that and more.
Roundcube login takes forever to quit with loading then fails.
Squirrelmail just times out. In both cases
  I presume the login for both is still email address nnd password?

regards
Anthony White
On 30/3/24 01:26, Eric Broch wrote:

Perhaps this might help:

php - apache proxy_fcgi - The timeout specified has expired - Error 
dispatching request - Stack Overflow

<https://stackoverflow.com/questions/46594731/apache-proxy-fcgi-the-timeout-specified-has-expired-error-dispatching-reques>

On 3/29/2024 8:06 AM, Tony White wrote:

The timeout specified has expired: [client 10.2.1.5:53966] AH01075: Error 
dispatching request to














Re: [qmailtoaster] web email/roundcube/squirrelamil

2024-03-29 Thread Tony White

Hi Eric,
  Thank you.
I have just been reviewing the migration results in the vpopmail table and
have an issue that may or not be a fault.

All tld's ycs.com.au are ycs-com.au in the vpopmail.vpopmail table. I would
have thought the tld should be ycs.com.au, yes?
I will check in the migration script and if it is on purpose try to correct it?

regards
Anthony White

On 30/3/24 16:24, Eric Broch wrote:

wget -P /etc/dovecot 
https://raw.githubusercontent.com/qmtoaster/scripts/master/dovecot-sql.conf.ext


Re: [qmailtoaster] web email/roundcube/squirrelamil

2024-03-29 Thread Tony White

Hi again,
  I have just completed following th ManyDomain text and found that
Neither '/etc/dovecot/dovecot-sql.conf.ext' or '/etc/dovecot/toaster.conf'
exist.
  Do I simply create them or has the install failed somehow?

TIA :)

regards
Anthony White

On 30/3/24 15:30, Remo Mattei wrote:



—
Ciao Remo

On venerdì, mar 29, 2024 at 21:10, Tony White  wrote:
Hi Folks,
  You are correct in both but this is the first time
I have a working server. I will be moving to ManyDomains next
after a snapshot. Id=f that works properly then upgrading to
RL 9 is next. Baby steps for me here. Tried too many times to
get it all working properly.

regards Anthony White

On 30/3/24 14:47, Eric Broch wrote:


I would reconsider and go with Many Domain option. The domain table option 
uses Dovecot binaries that can never be
updated since Dovecot has eliminated the vpopmail driver from the source. 
I'm not sure why we (qmt community) ever
decided against the Many Domain option. It is so much easier to interact 
with.

On 3/29/2024 9:32 PM, Tony White wrote:

Hi Eric,
  Okay rebuilt using RL 8.9, not a ManyDomain, and all seemed to go well 
until the migration from the old
server to the new. Everything works until dovecot which fails without 
error. There is no process for dovecot
and I cannot see anything in the log file to explain the failure.

regards Anthony White
On 30/3/24 11:56, Eric Broch wrote:


If you're installing on EL9 you have no choice, all the packages are 
Many-Domain. You'll have to dump the vpopmail
db on the old server, copy it to the new server, import the db into 
vpopmail mysql db and run the script to
convert the db to many domain found here 
<http://www.qmailtoaster.org/manydom.html>. It will leave the old
vpopmail domain_tld table entries in place creating a new vpopmail table in 
its stead.



On 3/29/2024 6:45 PM, Tony White wrote:

Hi Eric,
  In your opinion should I not do a many domain
install first then migrate to many domains? I
seem to have problems doing many domains then
moving my client domains over.

TIA :)

regards Anthony White
On 30/3/24 02:25, Eric Broch wrote:


It should, although 9 is strictly 'Many-Domain' so vpopmail database will 
need to be converted. Many domain's
conversion - QMT (qmailtoaster.org) <https://qmailtoaster.org/manydom.html>

Rocky 8 & 9 both use PHP8.1

Stock Squirrelmail might have issues

PHP upgrade 7.x to 8.1 - QmailToaster 
<http://wiki.qmailtoaster.org/index.php?title=PHP_upgrade_7.x_to_8.1>



On 3/29/2024 9:09 AM, Tony White wrote:

Eric,
  Does the migrate.html direction hold for Rocky 9?

regards Anthony White
On 30/3/24 02:02, Eric Broch wrote:

Yes, email address and password. If both are problematic I would assume the 
problem is not specific to either
one but would point to Apache or the server itself. Would you agree?

On 3/29/2024 8:54 AM, Tony White wrote:

Hi Eric,
  Yes thank you, I have tried that and more.
Roundcube login takes forever to quit with loading then fails.
Squirrelmail just times out. In both cases
  I presume the login for both is still email address nnd password?

regards
Anthony White
On 30/3/24 01:26, Eric Broch wrote:

Perhaps this might help:

php - apache proxy_fcgi - The timeout specified has expired - Error 
dispatching request - Stack Overflow

<https://stackoverflow.com/questions/46594731/apache-proxy-fcgi-the-timeout-specified-has-expired-error-dispatching-reques>

    On 3/29/2024 8:06 AM, Tony White wrote:

The timeout specified has expired: [client 10.2.1.5:53966] AH01075: Error 
dispatching request to












Re: [qmailtoaster] web email/roundcube/squirrelamil

2024-03-29 Thread Tony White

Hi Folks,
  You are correct in both but this is the first time
I have a working server. I will be moving to ManyDomains next
after a snapshot. Id=f that works properly then upgrading to
RL 9 is next. Baby steps for me here. Tried too many times to
get it all working properly.

regards
Anthony White

On 30/3/24 14:47, Eric Broch wrote:


I would reconsider and go with Many Domain option. The domain table option uses Dovecot binaries that can never be 
updated since Dovecot has eliminated the vpopmail driver from the source. I'm not sure why we (qmt community) ever 
decided against the Many Domain option. It is so much easier to interact with.


On 3/29/2024 9:32 PM, Tony White wrote:

Hi Eric,
  Okay rebuilt using RL 8.9, not a ManyDomain, and all seemed to go well until 
the migration from the old
server to the new. Everything works until dovecot which fails without error. 
There is no process for dovecot
and I cannot see anything in the log file to explain the failure.

regards
Anthony White
On 30/3/24 11:56, Eric Broch wrote:


If you're installing on EL9 you have no choice, all the packages are Many-Domain. You'll have to dump the vpopmail db 
on the old server, copy it to the new server, import the db into vpopmail mysql db and run the script to convert the db 
to many domain found here <http://www.qmailtoaster.org/manydom.html>. It will leave the old vpopmail domain_tld table 
entries in place creating a new vpopmail table in its stead.




On 3/29/2024 6:45 PM, Tony White wrote:

Hi Eric,
  In your opinion should I not do a many domain
install first then migrate to many domains? I
seem to have problems doing many domains then
moving my client domains over.

TIA :)

regards
Anthony White
On 30/3/24 02:25, Eric Broch wrote:


It should, although 9 is strictly 'Many-Domain' so vpopmail database will need to be converted. Many domain's 
conversion - QMT (qmailtoaster.org) <https://qmailtoaster.org/manydom.html>


Rocky 8 & 9 both use PHP8.1

Stock Squirrelmail might have issues

PHP upgrade 7.x to 8.1 - QmailToaster 
<http://wiki.qmailtoaster.org/index.php?title=PHP_upgrade_7.x_to_8.1>



On 3/29/2024 9:09 AM, Tony White wrote:

Eric,
  Does the migrate.html direction hold for Rocky 9?

regards
Anthony White
On 30/3/24 02:02, Eric Broch wrote:
Yes, email address and password. If both are problematic I would assume the problem is not specific to either one 
but would point to Apache or the server itself. Would you agree?


On 3/29/2024 8:54 AM, Tony White wrote:

Hi Eric,
  Yes thank you, I have tried that and more.
Roundcube login takes forever to quit with loading then fails.
Squirrelmail just times out. In both cases
  I presume the login for both is still email address nnd password?

regards
Anthony White
On 30/3/24 01:26, Eric Broch wrote:

Perhaps this might help:

php - apache proxy_fcgi - The timeout specified has expired - Error dispatching request - Stack Overflow 
<https://stackoverflow.com/questions/46594731/apache-proxy-fcgi-the-timeout-specified-has-expired-error-dispatching-reques>


On 3/29/2024 8:06 AM, Tony White wrote:

The timeout specified has expired: [client 10.2.1.5:53966] AH01075: Error 
dispatching request to










Re: [qmailtoaster] web email/roundcube/squirrelamil

2024-03-29 Thread Tony White

Hi Eric,
  Well the cli cmd

service dovecot status
reveals...

/etc/dovecot/toaster.conf line 13: ssl_cert: Can't open file 
/var/qmail/control/servercert.pem

Turns out I had not copied over my ssl certificates.

regards
Anthony White

On 30/3/24 11:56, Eric Broch wrote:


If you're installing on EL9 you have no choice, all the packages are Many-Domain. You'll have to dump the vpopmail db on 
the old server, copy it to the new server, import the db into vpopmail mysql db and run the script to convert the db to 
many domain found here <http://www.qmailtoaster.org/manydom.html>. It will leave the old vpopmail domain_tld table 
entries in place creating a new vpopmail table in its stead.




On 3/29/2024 6:45 PM, Tony White wrote:

Hi Eric,
  In your opinion should I not do a many domain
install first then migrate to many domains? I
seem to have problems doing many domains then
moving my client domains over.

TIA :)

regards
Anthony White
On 30/3/24 02:25, Eric Broch wrote:


It should, although 9 is strictly 'Many-Domain' so vpopmail database will need to be converted. Many domain's 
conversion - QMT (qmailtoaster.org) <https://qmailtoaster.org/manydom.html>


Rocky 8 & 9 both use PHP8.1

Stock Squirrelmail might have issues

PHP upgrade 7.x to 8.1 - QmailToaster 
<http://wiki.qmailtoaster.org/index.php?title=PHP_upgrade_7.x_to_8.1>



On 3/29/2024 9:09 AM, Tony White wrote:

Eric,
  Does the migrate.html direction hold for Rocky 9?

regards
Anthony White
On 30/3/24 02:02, Eric Broch wrote:
Yes, email address and password. If both are problematic I would assume the problem is not specific to either one but 
would point to Apache or the server itself. Would you agree?


On 3/29/2024 8:54 AM, Tony White wrote:

Hi Eric,
  Yes thank you, I have tried that and more.
Roundcube login takes forever to quit with loading then fails.
Squirrelmail just times out. In both cases
  I presume the login for both is still email address nnd password?

regards
Anthony White
On 30/3/24 01:26, Eric Broch wrote:

Perhaps this might help:

php - apache proxy_fcgi - The timeout specified has expired - Error dispatching request - Stack Overflow 
<https://stackoverflow.com/questions/46594731/apache-proxy-fcgi-the-timeout-specified-has-expired-error-dispatching-reques>


On 3/29/2024 8:06 AM, Tony White wrote:

The timeout specified has expired: [client 10.2.1.5:53966] AH01075: Error 
dispatching request to








Re: [qmailtoaster] web email/roundcube/squirrelamil

2024-03-29 Thread Tony White

Hi Eric,
  Okay rebuilt using RL 8.9, not a ManyDomain, and all seemed to go well until 
the migration from the old
server to the new. Everything works until dovecot which fails without error. 
There is no process for dovecot
and I cannot see anything in the log file to explain the failure.

regards
Anthony White

On 30/3/24 11:56, Eric Broch wrote:


If you're installing on EL9 you have no choice, all the packages are Many-Domain. You'll have to dump the vpopmail db on 
the old server, copy it to the new server, import the db into vpopmail mysql db and run the script to convert the db to 
many domain found here <http://www.qmailtoaster.org/manydom.html>. It will leave the old vpopmail domain_tld table 
entries in place creating a new vpopmail table in its stead.




On 3/29/2024 6:45 PM, Tony White wrote:

Hi Eric,
  In your opinion should I not do a many domain
install first then migrate to many domains? I
seem to have problems doing many domains then
moving my client domains over.

TIA :)

regards
Anthony White
On 30/3/24 02:25, Eric Broch wrote:


It should, although 9 is strictly 'Many-Domain' so vpopmail database will need to be converted. Many domain's 
conversion - QMT (qmailtoaster.org) <https://qmailtoaster.org/manydom.html>


Rocky 8 & 9 both use PHP8.1

Stock Squirrelmail might have issues

PHP upgrade 7.x to 8.1 - QmailToaster 
<http://wiki.qmailtoaster.org/index.php?title=PHP_upgrade_7.x_to_8.1>



On 3/29/2024 9:09 AM, Tony White wrote:

Eric,
  Does the migrate.html direction hold for Rocky 9?

regards
Anthony White
On 30/3/24 02:02, Eric Broch wrote:
Yes, email address and password. If both are problematic I would assume the problem is not specific to either one but 
would point to Apache or the server itself. Would you agree?


On 3/29/2024 8:54 AM, Tony White wrote:

Hi Eric,
  Yes thank you, I have tried that and more.
Roundcube login takes forever to quit with loading then fails.
Squirrelmail just times out. In both cases
  I presume the login for both is still email address nnd password?

regards
Anthony White
On 30/3/24 01:26, Eric Broch wrote:

Perhaps this might help:

php - apache proxy_fcgi - The timeout specified has expired - Error dispatching request - Stack Overflow 
<https://stackoverflow.com/questions/46594731/apache-proxy-fcgi-the-timeout-specified-has-expired-error-dispatching-reques>


On 3/29/2024 8:06 AM, Tony White wrote:

The timeout specified has expired: [client 10.2.1.5:53966] AH01075: Error 
dispatching request to








Re: [qmailtoaster] web email/roundcube/squirrelamil

2024-03-29 Thread Tony White

Hi Eric,
  In your opinion should I not do a many domain
install first then migrate to many domains? I
seem to have problems doing many domains then
moving my client domains over.

TIA :)

regards
Anthony White

On 30/3/24 02:25, Eric Broch wrote:


It should, although 9 is strictly 'Many-Domain' so vpopmail database will need to be converted. Many domain's conversion 
- QMT (qmailtoaster.org) <https://qmailtoaster.org/manydom.html>


Rocky 8 & 9 both use PHP8.1

Stock Squirrelmail might have issues

PHP upgrade 7.x to 8.1 - QmailToaster 
<http://wiki.qmailtoaster.org/index.php?title=PHP_upgrade_7.x_to_8.1>



On 3/29/2024 9:09 AM, Tony White wrote:

Eric,
  Does the migrate.html direction hold for Rocky 9?

regards
Anthony White
On 30/3/24 02:02, Eric Broch wrote:
Yes, email address and password. If both are problematic I would assume the problem is not specific to either one but 
would point to Apache or the server itself. Would you agree?


On 3/29/2024 8:54 AM, Tony White wrote:

Hi Eric,
  Yes thank you, I have tried that and more.
Roundcube login takes forever to quit with loading then fails.
Squirrelmail just times out. In both cases
  I presume the login for both is still email address nnd password?

regards
Anthony White
On 30/3/24 01:26, Eric Broch wrote:

Perhaps this might help:

php - apache proxy_fcgi - The timeout specified has expired - Error dispatching request - Stack Overflow 
<https://stackoverflow.com/questions/46594731/apache-proxy-fcgi-the-timeout-specified-has-expired-error-dispatching-reques>


On 3/29/2024 8:06 AM, Tony White wrote:

The timeout specified has expired: [client 10.2.1.5:53966] AH01075: Error 
dispatching request to






Re: [qmailtoaster] web email/roundcube/squirrelamil

2024-03-29 Thread Tony White

Hi Eric,
  Thank you for the confirmation.
Yes there are all sorts of issues that need to be overcome.
So far so good, the latest install is fully operational and
ready to clone over the old system.
  Hoping all goes well this time.

regards
Anthony White

On 30/3/24 02:25, Eric Broch wrote:
It should, although 9 is strictly 'Many-Domain' so vpopmail database will need to be converted. Many domain's conversion 
- QMT (qmailtoaster.org) <https://qmailtoaster.org/manydom.html>


Rocky 8 & 9 both use PHP8.1

Stock Squirrelmail might have issues

PHP upgrade 7.x to 8.1 - QmailToaster 
<http://wiki.qmailtoaster.org/index.php?title=PHP_upgrade_7.x_to_8.1>



On 3/29/2024 9:09 AM, Tony White wrote:

Eric,
  Does the migrate.html direction hold for Rocky 9?

regards
Anthony White
On 30/3/24 02:02, Eric Broch wrote:
Yes, email address and password. If both are problematic I would assume the problem is not specific to either one but 
would point to Apache or the server itself. Would you agree?


On 3/29/2024 8:54 AM, Tony White wrote:

Hi Eric,
  Yes thank you, I have tried that and more.
Roundcube login takes forever to quit with loading then fails.
Squirrelmail just times out. In both cases
  I presume the login for both is still email address nnd password?

regards
Anthony White
On 30/3/24 01:26, Eric Broch wrote:

Perhaps this might help:

php - apache proxy_fcgi - The timeout specified has expired - Error dispatching request - Stack Overflow 
<https://stackoverflow.com/questions/46594731/apache-proxy-fcgi-the-timeout-specified-has-expired-error-dispatching-reques>


On 3/29/2024 8:06 AM, Tony White wrote:

The timeout specified has expired: [client 10.2.1.5:53966] AH01075: Error 
dispatching request to






Re: [qmailtoaster] web email/roundcube/squirrelamil

2024-03-29 Thread Tony White

Eric,
  Does the migrate.html direction hold for Rocky 9?

regards
Anthony White

On 30/3/24 02:02, Eric Broch wrote:
Yes, email address and password. If both are problematic I would assume the problem is not specific to either one but 
would point to Apache or the server itself. Would you agree?


On 3/29/2024 8:54 AM, Tony White wrote:

Hi Eric,
  Yes thank you, I have tried that and more.
Roundcube login takes forever to quit with loading then fails.
Squirrelmail just times out. In both cases
  I presume the login for both is still email address nnd password?

regards
Anthony White
On 30/3/24 01:26, Eric Broch wrote:

Perhaps this might help:

php - apache proxy_fcgi - The timeout specified has expired - Error dispatching request - Stack Overflow 
<https://stackoverflow.com/questions/46594731/apache-proxy-fcgi-the-timeout-specified-has-expired-error-dispatching-reques>


On 3/29/2024 8:06 AM, Tony White wrote:

The timeout specified has expired: [client 10.2.1.5:53966] AH01075: Error 
dispatching request to




Re: [qmailtoaster] web email/roundcube/squirrelamil

2024-03-29 Thread Tony White

Hi Eric,
  I tend to agree. I have just reverted to a previous snapshot
so I can try again. I am trying Rocky 9to give me some leeway
into the future ie 2032. I will probably not be around by then
ho ho
  Thanks for the replies.  I will rerun the full install again now.

regards
Anthony White

On 30/3/24 02:02, Eric Broch wrote:
Yes, email address and password. If both are problematic I would assume the problem is not specific to either one but 
would point to Apache or the server itself. Would you agree?


On 3/29/2024 8:54 AM, Tony White wrote:

Hi Eric,
  Yes thank you, I have tried that and more.
Roundcube login takes forever to quit with loading then fails.
Squirrelmail just times out. In both cases
  I presume the login for both is still email address nnd password?

regards
Anthony White
On 30/3/24 01:26, Eric Broch wrote:

Perhaps this might help:

php - apache proxy_fcgi - The timeout specified has expired - Error dispatching request - Stack Overflow 
<https://stackoverflow.com/questions/46594731/apache-proxy-fcgi-the-timeout-specified-has-expired-error-dispatching-reques>


On 3/29/2024 8:06 AM, Tony White wrote:

The timeout specified has expired: [client 10.2.1.5:53966] AH01075: Error 
dispatching request to




Re: [qmailtoaster] web email/roundcube/squirrelamil

2024-03-29 Thread Tony White

Hi Eric,
  Yes thank you, I have tried that and more.
Roundcube login takes forever to quit with loading then fails.
Squirrelmail just times out. In both cases
  I presume the login for both is still email address nnd password?

regards
Anthony White

On 30/3/24 01:26, Eric Broch wrote:

Perhaps this might help:

php - apache proxy_fcgi - The timeout specified has expired - Error dispatching request - Stack Overflow 
<https://stackoverflow.com/questions/46594731/apache-proxy-fcgi-the-timeout-specified-has-expired-error-dispatching-reques>


On 3/29/2024 8:06 AM, Tony White wrote:

The timeout specified has expired: [client 10.2.1.5:53966] AH01075: Error 
dispatching request to


[qmailtoaster] web email/roundcube/squirrelamil

2024-03-29 Thread Tony White

Hi Folks,
  Sad to say I have started getting this error trying to log in to
web mail either squirrelmail and roundcube.

[Sat Mar 30 00:50:31.603465 2024] [proxy_fcgi:error] [pid 7308:tid 7349] (70007)The timeout specified has expired: [client 
10.2.1.5:52464] AH01075: Error dispatching request to : (polling), referer: https://mail.axti.au/webmail/src/login.php
[Sat Mar 30 00:50:41.806526 2024] [proxy_fcgi:error] [pid 7308:tid 7351] (70007)The timeout specified has expired: [client 
10.2.1.5:34614] AH01075: Error dispatching request to : (polling), referer: https://mail.axti.au/webmail/src/login.php
[Sat Mar 30 00:51:48.683386 2024] [proxy_fcgi:error] [pid 8048:tid 8162] (70007)The timeout specified has expired: [client 
10.2.1.5:53966] AH01075: Error dispatching request to : (polling), referer: https://mail.axti.au/webmail/src/login.php


Can anyone suggest what is happening please?

--
regards
Anthony White


[qmailtoaster] CNAME failure temporarily

2024-03-18 Thread Tony White

Hi Folks,
  I have a single client getting this error on
a single domain. Checking the domain there are
no CNAME records for it at all. How do I get
QMT to try A records? Or is there another thing
I should try?

TIA :)

--
regards
Anthony White


Re: [qmailtoaster] Apple iPhone Mail refuse to connect to qmt.

2024-02-20 Thread Tony White

Hi Remo,
  Had not tried that. I will get an Apple today and test.
Thank you

regards
Anthony White

On 21/2/24 03:25, Remo Mattei wrote:
Do you have another iPhone user? Have you tried with WiFi if the provider is not working disable data on the iPhone and 
use wireless to test


--
Sent from iPhone

On martedì, feb 20, 2024 at 08:21, Tony White  wrote:
Hi folks,
  Nice ideas but the device is not even getting to
the server. No entries in the logs visible. It almost
seems the ISP is blocking anything but their mail servers.
Yet an Android phone and pc, mac clients connect on issues.

regards Anthony White Across Technology 4a Birmingham Rd, Mount Evelyn, 
Victoria 3796 Mob 0481 362 743 acrosstechnology.com.au ALL CALLS ARE RECORDED

On 21/2/24 02:00, Eric Broch wrote:


Tony,

Did you have a look in the Dovecot log?


On 2/20/2024 3:23 AM, Tony White wrote:

Hi folks,
  I am at a loss.I have a customers iPhone 12 here and
created an account for him but it states it cannot connect
to the imap server. The settings are correct I have set up
an Android on site and it works perfectly. It is ios 17.2.1.


Any ideas  greatly appreciated.
-- regards Anthony White Across Technology 4a Birmingham Rd, Mount Evelyn, 
Victoria 3796 Mob 0481 362 743 acrosstechnology.com.au ALL CALLS ARE RECORDED




Re: [qmailtoaster] Apple iPhone Mail refuse to connect to qmt.

2024-02-20 Thread Tony White

Hi folks,
  Nice ideas but the device is not even getting to
the server. No entries in the logs visible. It almost
seems the ISP is blocking anything but their mail servers.
Yet an Android phone and pc, mac clients connect on issues.

regards
Anthony White
Across Technology
4a Birmingham Rd,
Mount Evelyn,
Victoria 3796
Mob 0481 362 743
acrosstechnology.com.au
ALL CALLS ARE RECORDED

On 21/2/24 02:00, Eric Broch wrote:


Tony,

Did you have a look in the Dovecot log?


On 2/20/2024 3:23 AM, Tony White wrote:

Hi folks,
  I am at a loss.I have a customers iPhone 12 here and
created an account for him but it states it cannot connect
to the imap server. The settings are correct I have set up
an Android on site and it works perfectly. It is ios 17.2.1.


Any ideas  greatly appreciated.
--
regards
Anthony White
Across Technology
4a Birmingham Rd,
Mount Evelyn,
Victoria 3796
Mob 0481 362 743
acrosstechnology.com.au
ALL CALLS ARE RECORDED


[qmailtoaster] Apple iPhone Mail refuse to connect to qmt.

2024-02-20 Thread Tony White

Hi folks,
  I am at a loss.I have a customers iPhone 12 here and
created an account for him but it states it cannot connect
to the imap server. The settings are correct I have set up
an Android on site and it works perfectly. It is ios 17.2.1.


Any ideas  greatly appreciated.

--
regards
Anthony White
Across Technology
4a Birmingham Rd,
Mount Evelyn,
Victoria 3796
Mob 0481 362 743
acrosstechnology.com.au
ALL CALLS ARE RECORDED


[qmailtoaster] Segfault 14 error 6 adding a new email account.

2024-01-31 Thread Tony White

Hi folks,
  I am getting a segfault 14 error 6 when adding a new email account to any 
domain
after the initial segfault.
  I hope someone can offer a reason and or a solution. I am stumped.

dmesg log
[10390.977162] toaster.vqadmin[61793]: segfault at 14 ip 55ab15543ae6 sp 7ffec4613410 error 6 in 
toaster.vqadmin[55ab1553c000+23000]
[10390.978162] Code: 0f 45 c2 89 c2 83 ca 01 48 83 7c 24 18 00 0f 45 c2 89 c2 83 ca 20 48 83 7c 24 28 00 0f 45 c2 89 c2 80 
ce 10 4d 85 ff 0f 45 c2 <89> 45 14 4d 85 e4 74 07 41 80 3c 24 00 75 73 48 8d 35 64 b9 21 00



Rocky Linux release 8.9 (Green Obsidian)
NAME="Rocky Linux"
VERSION="8.9 (Green Obsidian)"
ID="rocky"
ID_LIKE="rhel centos fedora"
VERSION_ID="8.9"
PLATFORM_ID="platform:el8"
PRETTY_NAME="Rocky Linux 8.9 (Green Obsidian)"
ANSI_COLOR="0;32"
LOGO="fedora-logo-icon"
CPE_NAME="cpe:/o:rocky:rocky:8:GA"
HOME_URL="https://rockylinux.org/;
BUG_REPORT_URL="https://bugs.rockylinux.org/;
SUPPORT_END="2029-05-31"
ROCKY_SUPPORT_PRODUCT="Rocky-Linux-8"
ROCKY_SUPPORT_PRODUCT_VERSION="8.9"
REDHAT_SUPPORT_PRODUCT="Rocky Linux"
REDHAT_SUPPORT_PRODUCT_VERSION="8.9"
Rocky Linux release 8.9 (Green Obsidian)
Rocky Linux release 8.9 (Green Obsidian)
Derived from Red Hat Enterprise Linux 8.9
Rocky Linux release 8.9 (Green Obsidian)
cpe:/o:rocky:rocky:8:GA

--
regards
Anthony White


Re: [qmailtoaster] Issues updateing Rocky - QMT

2023-11-01 Thread Tony White

Hi folks,
  All good. It seems my upstream stuffed up their routing tables somehow.

regards
Anthony White
On 2/11/23 10:42, Tony White wrote:


Update

I have run dnf and yum on other Rocky 8 systems here and they work.
It is only the QMT Rocky 8 install that is failing.

I will look into the differences between repo definitions now.




regards
Anthony White
Across Technology
4a Birmingham Rd,
Mount Evelyn,
Victoria 3796
Mob 0481 362 743
acrosstechnology.com.au
ALL CALLS ARE RECORDED
On 2/11/23 10:22, Tony White wrote:

Hi folks,
  I am trying to update a Rocky 8 install but
there appears to be issues with both dnf and yum updating.

1. connections simply timeout on repos

2. changing Dovecot repo from RHEL to CentOS appears to let that stage operate.

3. Next issue is elrepo.org it stales out as well.

4. So I have now tested all of the repos and many are failing.
remi-safe

Has anyone seen this before and found a cure please?

TIA :)

--
regards
Anthony White




Re: [qmailtoaster] Issues updateing Rocky - QMT

2023-11-01 Thread Tony White

Update

I have run dnf and yum on other Rocky 8 systems here and they work.
It is only the QMT Rocky 8 install that is failing.

I will look into the differences between repo definitions now.




regards
Anthony White
Across Technology
4a Birmingham Rd,
Mount Evelyn,
Victoria 3796
Mob 0481 362 743
acrosstechnology.com.au
ALL CALLS ARE RECORDED

On 2/11/23 10:22, Tony White wrote:

Hi folks,
  I am trying to update a Rocky 8 install but
there appears to be issues with both dnf and yum updating.

1. connections simply timeout on repos

2. changing Dovecot repo from RHEL to CentOS appears to let that stage operate.

3. Next issue is elrepo.org it stales out as well.

4. So I have now tested all of the repos and many are failing.
remi-safe

Has anyone seen this before and found a cure please?

TIA :)

--
regards
Anthony White


[qmailtoaster] Issues updateing Rocky - QMT

2023-11-01 Thread Tony White

Hi folks,
  I am trying to update a Rocky 8 install but
there appears to be issues with both dnf and yum updating.

1. connections simply timeout on repos

2. changing Dovecot repo from RHEL to CentOS appears to let that stage operate.

3. Next issue is elrepo.org it stales out as well.

4. So I have now tested all of the repos and many are failing.
remi-safe

Has anyone seen this before and found a cure please?

TIA :)

--
regards
Anthony White


Re: [qmailtoaster] qmail--dk issues again

2023-09-28 Thread Tony White

Hi folks,
  Fount it...
Seems the setuid bit must be on for both qmail-dk and orig files.

regards
Anthony White
Across Technology
4a Birmingham Rd,
Mount Evelyn,
Victoria 3796
Mob 0481 362 743
acrosstechnology.com.au
ALL CALLS ARE RECORDED

On 29/9/23 14:28, Tony White wrote:

After following the 
http://wiki.qmailtoaster.com/index.php/Disabling_Domain_Keys page
I now get this error. Pemissions and owners are correct...

Sending of the message failed.
An error occurred while sending mail. The mail server responded:
qq trouble creating files in queue (#4.3.0). Please check the message and try 
again.

I have reset it to the original now

regards
Anthony White

On 29/9/23 13:54, Tony White wrote:

Hi folks,
  Can someone tell me why qmail-dk works all day so far to
a single email address then the last two sends refuse to go
with the error...

Sending of the message failed.
An error occurred while sending mail. The mail server responded:
qmail-dk: Cannot sign message due to invalid message syntax. (#5.3.0).
Please check the message and try again.

I have simply replied to each time until the last two where I had
to create a new email.

Happens at odd times with no rhyme or reason.

TIA :)





Re: [qmailtoaster] qmail--dk issues again

2023-09-28 Thread Tony White

After following the 
http://wiki.qmailtoaster.com/index.php/Disabling_Domain_Keys page
I now get this error. Pemissions and owners are correct...

Sending of the message failed.
An error occurred while sending mail. The mail server responded:
qq trouble creating files in queue (#4.3.0). Please check the message and try 
again.

I have reset it to the original now

regards
Anthony White

On 29/9/23 13:54, Tony White wrote:

Hi folks,
  Can someone tell me why qmail-dk works all day so far to
a single email address then the last two sends refuse to go
with the error...

Sending of the message failed.
An error occurred while sending mail. The mail server responded:
qmail-dk: Cannot sign message due to invalid message syntax. (#5.3.0).
Please check the message and try again.

I have simply replied to each time until the last two where I had
to create a new email.

Happens at odd times with no rhyme or reason.

TIA :)



[qmailtoaster] qmail--dk issues again

2023-09-28 Thread Tony White

Hi folks,
  Can someone tell me why qmail-dk works all day so far to
a single email address then the last two sends refuse to go
with the error...

Sending of the message failed.
An error occurred while sending mail. The mail server responded:
qmail-dk: Cannot sign message due to invalid message syntax. (#5.3.0).
Please check the message and try again.

I have simply replied to each time until the last two where I had
to create a new email.

Happens at odd times with no rhyme or reason.

TIA :)

--
regards
Anthony White


[qmailtoaster] End of script output before headers: toaster.vqadmin

2023-08-18 Thread Tony White

Hi all,
  I am having issues with vqadmin. I can create a domain
but creating an email account files with...

Web
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to 
complete your request.

Please contact the server administrator at root@localhost to inform them of the time this error occurred, and the actions 
you performed just before this error.


More information about this error may be available in the server error log.

LOG

End of script output before headers: toaster.vqadmin, referer: 
https:///mail/vqadmin/toaster.vqadmin/show/add_user.html


Can anyone suggest why this is please? All the perms appear to be correct.

TIA :)

--
regards
Tony White


Re: [qmailtoaster] Issues with wiki.qmailtoaster.com

2023-07-11 Thread Tony White

All good Eric, thank you.

regards
Anthony White

On 12/7/23 09:24, Eric Broch wrote:

wiki is up

let me know if there are problems

On 7/11/2023 8:20 AM, Eric Broch wrote:

Try this until I get this until I get the main site up

http://wiki.qmailtoaster.net

On 7/11/2023 8:07 AM, Eric Broch wrote:

my main server went down and had to use backup server. i'll have it up asap

On 7/11/2023 7:54 AM, Angus McIntyre wrote:

Tony White wrote on 7/11/23 9:10 AM:

   Can anyone tell me why this is happening please?

At a guess, the site's database is down or unreachable.


Is anyone else seeing it?

Yes.

We'll probably need to wait for Eric to give the DB a kick.

Eric, would it be worth putting the wiki behind Cloudflare or a Varnish
cache or something to prevent this kind of thing? Or is that not an option?

Angus



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



[qmailtoaster] Issues with wiki.qmailtoaster.com

2023-07-11 Thread Tony White

Hi all
  Can anyone tell me why this is happening please?
Is anyone else seeing it?

http://wiki.qmailtoaster.com/index.php/Disabling_Domain_Keys

Sorry! This site is experiencing technical difficulties.
Try waiting a few minutes and reloading.

(Cannot access the database)

Backtrace:

#0 /var/www/wiki.qmailtoaster.com/includes/libs/rdbms/loadbalancer/LoadBalancer.php(991): 
Wikimedia\Rdbms\LoadBalancer->reportConnectionError()
#1 /var/www/wiki.qmailtoaster.com/includes/libs/rdbms/loadbalancer/LoadBalancer.php(963): 
Wikimedia\Rdbms\LoadBalancer->getServerConnection()

#2 /var/www/wiki.qmailtoaster.com/includes/page/WikiPage.php(476): 
Wikimedia\Rdbms\LoadBalancer->getConnection()
#3 /var/www/wiki.qmailtoaster.com/includes/page/WikiPage.php(598): 
WikiPage->loadPageData()
#4 /var/www/wiki.qmailtoaster.com/includes/page/WikiPage.php(672): 
WikiPage->exists()
#5 /var/www/wiki.qmailtoaster.com/includes/page/WikiPage.php(304): 
WikiPage->getContentModel()
#6 /var/www/wiki.qmailtoaster.com/includes/page/WikiPage.php(290): 
WikiPage->getContentHandler()
#7 /var/www/wiki.qmailtoaster.com/includes/page/Article.php(2012): 
WikiPage->getActionOverrides()
#8 /var/www/wiki.qmailtoaster.com/includes/actions/ActionFactory.php(255): 
Article->getActionOverrides()
#9 /var/www/wiki.qmailtoaster.com/includes/actions/ActionFactory.php(349): 
MediaWiki\Actions\ActionFactory->getAction()
#10 /var/www/wiki.qmailtoaster.com/includes/actions/Action.php(111): 
MediaWiki\Actions\ActionFactory->getActionName()
#11 /var/www/wiki.qmailtoaster.com/includes/MediaWiki.php(176): 
Action::getActionName()
#12 /var/www/wiki.qmailtoaster.com/includes/MediaWiki.php(892): 
MediaWiki->getAction()
#13 /var/www/wiki.qmailtoaster.com/includes/MediaWiki.php(564): 
MediaWiki->main()
#14 /var/www/wiki.qmailtoaster.com/index.php(53): MediaWiki->run()
#15 /var/www/wiki.qmailtoaster.com/index.php(46): wfIndexMain()
#16 {main}

--
regards
Anthony White


[qmailtoaster] Limit number of receiver emails per send?

2023-04-12 Thread Tony White

Hi folks,
  Where do I limit the number of email addresses allowed to be sent to
from one single email please?

--
regards
Tony White


Re: [qmailtoaster] Just started getting this error in the last hour

2023-01-23 Thread Tony White

HI,
  There seems to be an issue with a specific email.
I have deleted it and tried sending again and it went.
The original issue was a reply to which failed.

TIA :)

regards
Tony White
On 23/1/23 18:45, Tony White wrote:


Hi folks,
  I am suddently, within the last hour, getting this error
and I have made no changes to the server...


Sending of the message failed.
An error occurred while sending mail. The mail server responded: qmail-dk: Cannot sign message due to invalid message 
syntax. (#5.3.0). Please check the message and try again.


Can anyone help here please?





-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



[qmailtoaster] Just started getting this error in the last hour

2023-01-22 Thread Tony White

Hi folks,
  I am suddently, within the last hour, getting this error
and I have made no changes to the server...


Sending of the message failed.
An error occurred while sending mail. The mail server responded: qmail-dk: Cannot sign message due to invalid message 
syntax. (#5.3.0). Please check the message and try again.


Can anyone help here please?


--
regards
Tony White


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] Roundcube File Not Found issue after clean install

2022-11-19 Thread Tony White

Hi,
  It seems the default skin is "larry" yet there is no
skin by that name. The only one in the skins folder is "elastic".
Changed the default to elastic and it all works now.

regards
Tony White
On 20/11/22 12:34, Tony White wrote:


Hi folks,
  I am at a loss here and cannot find a cure.
After a clean install onto Rocky 8 minimum install
Roundcube throws this error.

FILE NOT FOUND
The requested resource was not found!
Please contact your server-administrator.

Has anyone any idea as to why this happens? There is
no indication of the logs of an error. The error does
not indicate any specific file not found.

Any help appreciated.




-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] Roundcube File Not Found issue after clean install

2022-11-19 Thread Tony White

Hi,
  It seems to be an issue with a skin or selected skin not found.
The error was in the Roundcube error file not the the httpd log.

regards
Tony White
On 20/11/22 12:34, Tony White wrote:


FILE NOT FOUND
The requested resource was not found!
Please contact your server-administrator



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



[qmailtoaster] Roundcube File Not Found issue after clean install

2022-11-19 Thread Tony White

Hi folks,
  I am at a loss here and cannot find a cure.
After a clean install onto Rocky 8 minimum install
Roundcube throws this error.

FILE NOT FOUND
The requested resource was not found!
Please contact your server-administrator.

Has anyone any idea as to why this happens? There is
no indication of the logs of an error. The error does
not indicate any specific file not found.

Any help appreciated.

--
regards
Tony White


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] rsync settings for migration

2022-10-16 Thread Tony White

Hi Eric,
  Sorry my error. You do. Should have read rsync --progress -zav -e

regards
Anthony White
Across Technology
4a Birmingham Rd,
Mount Evelyn,
Victoria 3796
Mob 0481 362 743
acrosstechnology.com.au
ALL CALLS ARE RECORDED

On 17/10/22 05:32, Eric Broch wrote:

Don't I have that?

rsync --progress -zv -are

On Oct 15, 2022, 11:06 PM, at 11:06 PM, Tony White  wrote:

Hi Eric,
   Just a thought. The rsync parameters you have in
the migration page might be better with this
rsync --progress -zav as the a retains permissions
and ownership.


--
regards
Tony White


-
To unsubscribe, e-mail:qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail:
qmailtoaster-list-h...@qmailtoaster.com


[qmailtoaster] rsync settings for migration

2022-10-15 Thread Tony White

Hi Eric,
  Just a thought. The rsync parameters you have in
the migration page might be better with this
rsync --progress -zav as the a retains permissions
and ownership.


--
regards
Tony White


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] scripting help for QMT please...

2022-10-10 Thread Tony White

Nope, my bad. I did not look at the logs from QMT.
They are still text.
So no need to worry.

Thanks... :)

regards
Tony White
On 11/10/22 14:36, Tony White wrote:


Hi folks,
 Over the years I have written many shell scripts
that rely on logs to extract data to monitor and
protect my servers.
  With the advent of SystemD has anyone any idea
how to make scripts work with binary files?



[qmailtoaster] scripting help for QMT please...

2022-10-10 Thread Tony White

Hi folks,
 Over the years I have written many shell scripts
that rely on logs to extract data to monitor and
protect my servers.
  With the advent of SystemD has anyone any idea
how to make scripts work with binary files?

--
regards
Tony White


Re: [qmailtoaster] HTTPD only serves https

2022-09-24 Thread Tony White

Also note that roundcube does not install at all.

regards
Anthony White
Across Technology
4a Birmingham Rd,
Mount Evelyn,
Victoria 3796
Mob 0481 362 743
acrosstechnology.com.au
ALL CALLS ARE RECORDED

On 24/9/22 16:41, Tony White wrote:

Update:
It seems both the roundcube and squirrelmail rewrite rules affect all
http operations not just the roundcube and squirrelmail.

Any ideas please?

regards
Anthony White

On 24/9/22 15:36, Tony White wrote:

Hi,
  I had a perfectly good working httpd server until after installing
qmt. Now my web server on serves https. Can someone tell me where to
disable this please. I have sites that will never have and SSL as
they are only on my lan.






Re: [qmailtoaster] HTTPD only serves https

2022-09-24 Thread Tony White

Update:
It seems both the roundcube and squirrelmail rewrite rules affect all
http operations not just the roundcube and squirrelmail.

Any ideas please?

regards
Anthony White

On 24/9/22 15:36, Tony White wrote:

Hi,
  I had a perfectly good working httpd server until after installing
qmt. Now my web server on serves https. Can someone tell me where to
disable this please. I have sites that will never have and SSL as
they are only on my lan.




[qmailtoaster] HTTPD only serves https

2022-09-23 Thread Tony White

Hi,
  I had a perfectly good working httpd server until after installing
qmt. Now my web server on serves https. Can someone tell me where to
disable this please. I have sites that will never have and SSL as
they are only on my lan.


--
regards
Anthony White


Re: [qmailtoaster] Issues trying to build a new COS7 server

2022-08-27 Thread Tony White

Hi,
  Workaround.

copy qmt.repo to another file ie qmt.repo.copy.
Edit qmt.repo and remove the "s" from "https".

Working now.

regards
Anthony White
Across Technology
4a Birmingham Rd,
Mount Evelyn,
Victoria 3796
Mob 0481 362 743
acrosstechnology.com.au
ALL CALLS ARE RECORDED

On 27/8/22 19:45, Tony White wrote:

Hi folks,
  Trying to build a new COS7 server and using qt_install I
get this error.

Could not retrieve mirrorlist 
https://www.qmailtoaster.org/qmt-mirrorlist-current error was
14: curl#60 - "Peer's Certificate has expired."

Anyone else have this issue please?



[qmailtoaster] Issues trying to build a new COS7 server

2022-08-27 Thread Tony White

Hi folks,
  Trying to build a new COS7 server and using qt_install I
get this error.

Could not retrieve mirrorlist 
https://www.qmailtoaster.org/qmt-mirrorlist-current error was
14: curl#60 - "Peer's Certificate has expired."

Anyone else have this issue please?

--
regards
Anthony White
Across Technology
4a Birmingham Rd,
Mount Evelyn,
Victoria 3796
Mob 0481 362 743
acrosstechnology.com.au
ALL CALLS ARE RECORDED


[qmailtoaster] Emails not found in logs

2022-05-08 Thread Tony White

Hi All,
  I am hoping someone can help with this issue please.
Recently I have been receiving emails with the Subject:
New Contact request from .
  I have used the header-blacklist-entry=Subject in the
spamdyke file to trap it but it still gets through. I have
scanned the log files for the items but nothing is found.
  While the issue is not huge, it is bothersome that I
cannot find out how to stop these emails from arriving.
  Has anyone any ideas as to how they are getting through?

TIA :)

--
regards
Tony White


Re: [qmailtoaster] Heuristics.PNG.CVE-2010-1205

2021-06-08 Thread Tony White

https://www.cvedetails.com/cve/CVE-2010-1205/

regards
Tony White
On 8/6/21 8:06 pm, ChandranManikandan wrote:


Hi Folks,

Our users are getting the message below while they are trying to send an
email from Windows 10 with the Thunderbird email client.

"An error occurred while sending mail. The mail server responded: your
email was rejected because it contains the Heuristics.PNG.CVE-2010-1205
virus. Please check the message and try again "

It's generated from the server or email client issue.
I Appreciate your support.





[qmailtoaster] How do I make a donation to you Eric to help you keep this going?

2021-05-22 Thread Tony White

Hi Eric,
 I am unable to locate a way of donating.
There is nothing on the qmailtoaster page.
Do you have a quick way please?

--
regards
Tony White


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] forwarding incoming email for single client to two different email accounts.

2021-05-21 Thread Tony White

Hi,
  First time ever had to do this...
Not installed qmailadmin.
  Will look into it.

Thank you.

regards
Tony White
Across Technology
4a Birmingham Rd,
Mount Evelyn,
Victoria 3796
Mob 0481 362 743
acrosstechnology.com.au

On 21/5/21 4:13 pm, Andreas Galatis wrote:

Hi Toni,

the alias means you dont have the original account but only send mails
to the recipients
ie
@gmail.com
@gmail.com

With qmail-toaster the forwardings are managed in the valias- table of
vpopmail.
Dont you use qmailadmin?

Andreas

Am 21.05.21 um 06:50 schrieb Tony White:

Hi folks,
   Do I simply add two email addresses to this file?

/var/qmail/alias/.qmail-username

ie

@gmail.com
@gmail.com

Does this then remove the email from the original
account?

--
regards
Tony White
Across Technology
4a Birmingham Rd,
Mount Evelyn,
Victoria 3796
Mob 0481 362 743
acrosstechnology.com.au






[qmailtoaster] forwarding incoming email for single client to two different email accounts.

2021-05-20 Thread Tony White

Hi folks,
  Do I simply add two email addresses to this file?

/var/qmail/alias/.qmail-username

ie

@gmail.com
@gmail.com

Does this then remove the email from the original
account?

--
regards
Tony White
Across Technology
4a Birmingham Rd,
Mount Evelyn,
Victoria 3796
Mob 0481 362 743
acrosstechnology.com.au



Re: [qmailtoaster] Built a COS7 server but qmt is not starting at boot

2021-02-15 Thread Tony White

Hi Eric,
  At 2.35am when your email arrived I was in bed asleep.
So I did not see your email until earlier today.
  I will take a look at the script on my return to my
other office.
  Thank you for the tip...


best wishes
  Tony White

On 15/2/21 12:10 am, Tony White wrote:

Hi folks,
  Can someone suggest why a new COS build
is not starting qmail?

TIA :)

[root@blackhawk-qmt ~]# toaststat

Status of toaster services
send: supervise not running
smtp: supervise not running
submission: supervise not running
send/log: supervise not running
smtp/log: supervise not running
submission/log: supervise not running

systemd service:   clamd@scan:      [  OK  ]
systemd service: clamav-freshclam:      [  OK  ]
systemd service: spamassassin:      [  OK  ]
systemd service:  dovecot:      [  OK  ]
systemd service:  mariadb:      [  OK  ]
systemd service:    httpd:      [  OK  ]
systemd service: ntpd:      [  OK  ]
systemd service: sshd:      [  OK  ]
systemd service:  network:      [  OK  ]
systemd service:    crond:      [  OK  ]
systemd service:    acpid:      [  OK  ]
systemd service:  atd:      [  OK  ]
systemd service:   autofs:      [  OK  ]
systemd service:   smartd:      [  OK  ]
systemd service:   irqbalance:      [  OK  ]


Manual starting recovers the issue.

[root@blackhawk-qmt ~]# qmailctl start
Starting qmail-toaster: svscan.
[root@blackhawk-qmt ~]# toaststat

Status of toaster services
send: up (pid 1888) 4 seconds
smtp: up (pid 1889) 4 seconds
submission: up (pid 1887) 4 seconds
send/log: up (pid 1891) 4 seconds
smtp/log: up (pid 1886) 4 seconds
submission/log: up (pid 1890) 4 seconds

systemd service:   clamd@scan:      [  OK  ]
systemd service: clamav-freshclam:      [  OK  ]
systemd service: spamassassin:      [  OK  ]
systemd service:  dovecot:      [  OK  ]
systemd service:  mariadb:      [  OK  ]
systemd service:    httpd:      [  OK  ]
systemd service: ntpd:      [  OK  ]
systemd service: sshd:      [  OK  ]
systemd service:  network:      [  OK  ]
systemd service:    crond:      [  OK  ]
systemd service:    acpid:      [  OK  ]
systemd service:  atd:      [  OK  ]
systemd service:   autofs:      [  OK  ]
systemd service:   smartd:      [  OK  ]
systemd service:   irqbalance:      [  OK  ]





-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



[qmailtoaster] Built a COS7 server but qmt is not starting at boot

2021-02-14 Thread Tony White

Hi folks,
  Can someone suggest why a new COS build
is not starting qmail?

TIA :)

[root@blackhawk-qmt ~]# toaststat

Status of toaster services
send: supervise not running
smtp: supervise not running
submission: supervise not running
send/log: supervise not running
smtp/log: supervise not running
submission/log: supervise not running

systemd service:   clamd@scan:      [  OK  ]
systemd service: clamav-freshclam:      [  OK  ]
systemd service: spamassassin:      [  OK  ]
systemd service:  dovecot:      [  OK  ]
systemd service:  mariadb:      [  OK  ]
systemd service:    httpd:      [  OK  ]
systemd service: ntpd:      [  OK  ]
systemd service: sshd:      [  OK  ]
systemd service:  network:      [  OK  ]
systemd service:    crond:      [  OK  ]
systemd service:    acpid:      [  OK  ]
systemd service:  atd:      [  OK  ]
systemd service:   autofs:      [  OK  ]
systemd service:   smartd:      [  OK  ]
systemd service:   irqbalance:      [  OK  ]


Manual starting recovers the issue.

[root@blackhawk-qmt ~]# qmailctl start
Starting qmail-toaster: svscan.
[root@blackhawk-qmt ~]# toaststat

Status of toaster services
send: up (pid 1888) 4 seconds
smtp: up (pid 1889) 4 seconds
submission: up (pid 1887) 4 seconds
send/log: up (pid 1891) 4 seconds
smtp/log: up (pid 1886) 4 seconds
submission/log: up (pid 1890) 4 seconds

systemd service:   clamd@scan:      [  OK  ]
systemd service: clamav-freshclam:      [  OK  ]
systemd service: spamassassin:      [  OK  ]
systemd service:  dovecot:      [  OK  ]
systemd service:  mariadb:      [  OK  ]
systemd service:    httpd:      [  OK  ]
systemd service: ntpd:      [  OK  ]
systemd service: sshd:      [  OK  ]
systemd service:  network:      [  OK  ]
systemd service:    crond:      [  OK  ]
systemd service:    acpid:      [  OK  ]
systemd service:  atd:      [  OK  ]
systemd service:   autofs:      [  OK  ]
systemd service:   smartd:      [  OK  ]
systemd service:   irqbalance:      [  OK  ]


--
best wishes
  Tony White

http://acrosstechnology.com.au
4a Birmingham Road
Mount Evelyn
Victoria
Australia 3796

Telephone No's
VIC : 0481 362 743

Please note: YCS records all calls to better serve you.

IMPORTANT NOTICE

This communication including any file attachments is intended solely for
the use of the individual or entity to whom it is addressed. If you are
not the intended recipient, or the person responsible for delivering
this communication to the intended recipient, please immediately notify
the sender by email and delete the original transmission and its
contents. Any unauthorised use, dissemination, forwarding, printing or
copying of this communication including file attachments is prohibited.
It is your responsibility to scan this communication including any file
attachments for viruses and other defects. To the extent permitted by
law, Yea Computing Services and its associates will not be liable for
any loss or damage arising in any way from this communication including
any file attachments.
You may not disclose this information to a third party without written
permission from the Author.


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



[qmailtoaster] COS 6 install not on the QMT site.

2021-02-12 Thread Tony White

Hi Eric,
  Is the installer for COS 6.x still available please?
I am trying Springdale 6.8.
  They also have  7 and 8.

TIA :)

--
best wishes
  Tony White


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



[qmailtoaster] COS7 qmail wiil not start from the qmail script in etc/rc.d/init.d

2021-01-18 Thread Tony White

Hi all,
  I am a little stuck. Having just built a COS7 qmail server using Eric's
system I had hoped all would work well.
  Unfortunately I am unable to reboot and have qmail start with the script
in the /etc/rc.d/init.d folder.

All I get is this
[root@localhost ~]# /etc/rc.d/init.d/qmail start
Starting qmail (via systemctl):  Job for qmail.service canceled.
   [FAILED]


However if I run this...

qmailctl start

all is well.

Have I missed something or messed something up during the install?

TIA :)

--
best wishes
  Tony White


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] Future of qmailtoaster on CentOS?

2020-12-10 Thread Tony White

Hi Eric,
  Not fully operational yet. Still working from a page
I found last week. Everything seems to install but
I want to compare it to QMT after it is operational.
Again, I will keep the list updated.

best wishes
  Tony White

On 11/12/20 8:42 am, Eric Broch wrote:


Do you have a qmailtoaster version installed on FreeBSD?

On 12/10/2020 2:41 PM, Tony White wrote:

Hi Eric,
  As to debian you can install the software called alien.
This will convert .rpm to .deb at the command line. I have
used alien and it does convert your packages properly. Thee
only items to check would be scripting.
  I will keep plodding on with my FreeBSD as it appears to
stable and viable and does not have systemd.

best wishes
  Tony White

On 11/12/20 2:35 am, Eric Broch wrote:


/Fellow QMT enthusiasts:
/

/I became concerned about the future of CentOS a week or so ago ///(not a premonition just my natural paranoia) /prior 
to their announcement two days back and visited centos.org to relieve my fears. I was confident at that point that 
having gotten QMT/CentOS 8 ready I was good to go for ~10 years. My confidence MAY have been hasty. I'm still not sure 
what drawbacks 'stream' is going to bring, if any, and like Angus am apprehensive. It's supposed to be an intermediate 
environment between Fedora and RHEL. In my opinion, to release CentOS 8 and then move it from downstream to upstream 
after people have already migrated is short-sighted at the very least, and its name Community Enterprise OS (8) is now 
a misnomer. Living in somewhat of a cocoon, I was completely unaware that RH "joined" CentOS. I've heard some say that 
we've been freeloading off CentOS for years and now it's time to pay up. Never mind that a free kernel is used and we 
actually test the software and report bugs. That said, I have REALLY enjoyed using CentOS since the beginning.

/

/That said, having a look at the old spec files from *-toaster designation days when we built the QMT for specific 
platforms, Fedora, was among them along with Suse, Mandrake, so, at the beginning QMT was used in a non-Enterprise 
environment. Anyway...

/

/Personally, I'm interested in both Debian and FreeBSD and would like to go back halfway to multi-platform builds while 
keeping the current QMT/CentOS 8 offering. This would mitigate the problems, if there are any, we are seeing now 
(hopefully). I guess it just depends on when (or if) the mega-corps buy up all of the Linux distributions and hang us 
all out to dry. Given the Felliniesque nature of the world today nothing would surprise me anymore.

/

/One advantage of having a ports like mail server is the ability, if one is inclined to dig a little beyond binary 
installs, to make changes on the fly without having to wait for packages from the repo./


/I've tried to install FreeBSD, although somewhat half-heartedly, on Proxmox serveral times with no success. If anyone 
has any hints I'm all ears...just my 2 cents./


/So, if anyone is working on installing QMT on another platform please keep us apprised of your successes. If you feel 
like writing it up, I'll post it to the web site.

/

/I'll be looking into converting to *.deb packages (like rpm's, binary ease of install) in some way (I tried using 
alien...on the website) which can be used on Ubuntu and Debian Linux. Back to work for me...

/

/Eric B.
/

On 12/9/2020 7:31 PM, Tony White wrote:

Hi all,
  Anyone interested in BSD either Free or Open?
I am starting to work on building a FreeBSD version
of this for myself. Would like to know if anyone
else is interested.

best wishes
  Tony White

On 10/12/20 6:49 am, Unai Rodriguez wrote:

Debian!

-- unai

On Wed, Dec 9, 2020, at 8:20 PM, Boheme wrote:

I’ve been meaning to learn to compile all the source for Ubuntu for a
while. This may be the kick in the pants I needed.

-Sent from my Pip-Boy 3000


On 10/12/2020, at 12:50 AM, Angus McIntyre  wrote:

Does anyone have any thoughts on the likely future of qmailtoaster given the 
new plans for CentOS?

(See https://centos.org/distro-faq/ for more details)

I'd never actually heard of CentOS Stream before today, but having just painfully built a working toaster on top of 
CentOS 8, I'm a little apprehensive about the impact of the proposed changes.


Comments?

Angus


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailt

Re: [qmailtoaster] Future of qmailtoaster on CentOS?

2020-12-10 Thread Tony White

Hi Eric,
  I am also going to try devuan this weekend with the alien conversion of
your .rpm to .deb. I will keep the list updated. Again no systemd.


best wishes
  Tony White

On 11/12/20 2:35 am, Eric Broch wrote:


/Fellow QMT enthusiasts:
/

/I became concerned about the future of CentOS a week or so ago ///(not a premonition just my natural paranoia) /prior to 
their announcement two days back and visited centos.org to relieve my fears. I was confident at that point that having 
gotten QMT/CentOS 8 ready I was good to go for ~10 years. My confidence MAY have been hasty. I'm still not sure what 
drawbacks 'stream' is going to bring, if any, and like Angus am apprehensive. It's supposed to be an intermediate 
environment between Fedora and RHEL. In my opinion, to release CentOS 8 and then move it from downstream to upstream 
after people have already migrated is short-sighted at the very least, and its name Community Enterprise OS (8) is now a 
misnomer. Living in somewhat of a cocoon, I was completely unaware that RH "joined" CentOS. I've heard some say that 
we've been freeloading off CentOS for years and now it's time to pay up. Never mind that a free kernel is used and we 
actually test the software and report bugs. That said, I have REALLY enjoyed using CentOS since the beginning.

/

/That said, having a look at the old spec files from *-toaster designation days when we built the QMT for specific 
platforms, Fedora, was among them along with Suse, Mandrake, so, at the beginning QMT was used in a non-Enterprise 
environment. Anyway...

/

/Personally, I'm interested in both Debian and FreeBSD and would like to go back halfway to multi-platform builds while 
keeping the current QMT/CentOS 8 offering. This would mitigate the problems, if there are any, we are seeing now 
(hopefully). I guess it just depends on when (or if) the mega-corps buy up all of the Linux distributions and hang us all 
out to dry. Given the Felliniesque nature of the world today nothing would surprise me anymore.

/

/One advantage of having a ports like mail server is the ability, if one is inclined to dig a little beyond binary 
installs, to make changes on the fly without having to wait for packages from the repo./


/I've tried to install FreeBSD, although somewhat half-heartedly, on Proxmox serveral times with no success. If anyone 
has any hints I'm all ears...just my 2 cents./


/So, if anyone is working on installing QMT on another platform please keep us apprised of your successes. If you feel 
like writing it up, I'll post it to the web site.

/

/I'll be looking into converting to *.deb packages (like rpm's, binary ease of install) in some way (I tried using 
alien...on the website) which can be used on Ubuntu and Debian Linux. Back to work for me...

/

/Eric B.
/

On 12/9/2020 7:31 PM, Tony White wrote:

Hi all,
  Anyone interested in BSD either Free or Open?
I am starting to work on building a FreeBSD version
of this for myself. Would like to know if anyone
else is interested.

best wishes
  Tony White

On 10/12/20 6:49 am, Unai Rodriguez wrote:

Debian!

-- unai

On Wed, Dec 9, 2020, at 8:20 PM, Boheme wrote:

I’ve been meaning to learn to compile all the source for Ubuntu for a
while. This may be the kick in the pants I needed.

-Sent from my Pip-Boy 3000


On 10/12/2020, at 12:50 AM, Angus McIntyre  wrote:

Does anyone have any thoughts on the likely future of qmailtoaster given the 
new plans for CentOS?

(See https://centos.org/distro-faq/ for more details)

I'd never actually heard of CentOS Stream before today, but having just painfully built a working toaster on top of 
CentOS 8, I'm a little apprehensive about the impact of the proposed changes.


Comments?

Angus


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] Future of qmailtoaster on CentOS?

2020-12-10 Thread Tony White

Hi Eric,
  As to debian you can install the software called alien.
This will convert .rpm to .deb at the command line. I have
used alien and it does convert your packages properly. Thee
only items to check would be scripting.
  I will keep plodding on with my FreeBSD as it appears to
stable and viable and does not have systemd.

best wishes
  Tony White

On 11/12/20 2:35 am, Eric Broch wrote:


/Fellow QMT enthusiasts:
/

/I became concerned about the future of CentOS a week or so ago ///(not a premonition just my natural paranoia) /prior to 
their announcement two days back and visited centos.org to relieve my fears. I was confident at that point that having 
gotten QMT/CentOS 8 ready I was good to go for ~10 years. My confidence MAY have been hasty. I'm still not sure what 
drawbacks 'stream' is going to bring, if any, and like Angus am apprehensive. It's supposed to be an intermediate 
environment between Fedora and RHEL. In my opinion, to release CentOS 8 and then move it from downstream to upstream 
after people have already migrated is short-sighted at the very least, and its name Community Enterprise OS (8) is now a 
misnomer. Living in somewhat of a cocoon, I was completely unaware that RH "joined" CentOS. I've heard some say that 
we've been freeloading off CentOS for years and now it's time to pay up. Never mind that a free kernel is used and we 
actually test the software and report bugs. That said, I have REALLY enjoyed using CentOS since the beginning.

/

/That said, having a look at the old spec files from *-toaster designation days when we built the QMT for specific 
platforms, Fedora, was among them along with Suse, Mandrake, so, at the beginning QMT was used in a non-Enterprise 
environment. Anyway...

/

/Personally, I'm interested in both Debian and FreeBSD and would like to go back halfway to multi-platform builds while 
keeping the current QMT/CentOS 8 offering. This would mitigate the problems, if there are any, we are seeing now 
(hopefully). I guess it just depends on when (or if) the mega-corps buy up all of the Linux distributions and hang us all 
out to dry. Given the Felliniesque nature of the world today nothing would surprise me anymore.

/

/One advantage of having a ports like mail server is the ability, if one is inclined to dig a little beyond binary 
installs, to make changes on the fly without having to wait for packages from the repo./


/I've tried to install FreeBSD, although somewhat half-heartedly, on Proxmox serveral times with no success. If anyone 
has any hints I'm all ears...just my 2 cents./


/So, if anyone is working on installing QMT on another platform please keep us apprised of your successes. If you feel 
like writing it up, I'll post it to the web site.

/

/I'll be looking into converting to *.deb packages (like rpm's, binary ease of install) in some way (I tried using 
alien...on the website) which can be used on Ubuntu and Debian Linux. Back to work for me...

/

/Eric B.
/

On 12/9/2020 7:31 PM, Tony White wrote:

Hi all,
  Anyone interested in BSD either Free or Open?
I am starting to work on building a FreeBSD version
of this for myself. Would like to know if anyone
else is interested.

best wishes
  Tony White

On 10/12/20 6:49 am, Unai Rodriguez wrote:

Debian!

-- unai

On Wed, Dec 9, 2020, at 8:20 PM, Boheme wrote:

I’ve been meaning to learn to compile all the source for Ubuntu for a
while. This may be the kick in the pants I needed.

-Sent from my Pip-Boy 3000


On 10/12/2020, at 12:50 AM, Angus McIntyre  wrote:

Does anyone have any thoughts on the likely future of qmailtoaster given the 
new plans for CentOS?

(See https://centos.org/distro-faq/ for more details)

I'd never actually heard of CentOS Stream before today, but having just painfully built a working toaster on top of 
CentOS 8, I'm a little apprehensive about the impact of the proposed changes.


Comments?

Angus


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoas

Re: [qmailtoaster] Future of qmailtoaster on CentOS?

2020-12-09 Thread Tony White

Hi all,
  Anyone interested in BSD either Free or Open?
I am starting to work on building a FreeBSD version
of this for myself. Would like to know if anyone
else is interested.

best wishes
  Tony White

On 10/12/20 6:49 am, Unai Rodriguez wrote:

Debian!

-- unai

On Wed, Dec 9, 2020, at 8:20 PM, Boheme wrote:

I’ve been meaning to learn to compile all the source for Ubuntu for a
while. This may be the kick in the pants I needed.

-Sent from my Pip-Boy 3000


On 10/12/2020, at 12:50 AM, Angus McIntyre  wrote:

Does anyone have any thoughts on the likely future of qmailtoaster given the 
new plans for CentOS?

(See https://centos.org/distro-faq/ for more details)

I'd never actually heard of CentOS Stream before today, but having just 
painfully built a working toaster on top of CentOS 8, I'm a little apprehensive 
about the impact of the proposed changes.

Comments?

Angus


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] Gmail account to be imported to qmt

2020-12-06 Thread Tony White

Thank you Eric.
Did not think to look on github!

best wishes
  Tony White

On 6/12/20 5:04 pm, Eric Broch wrote:

https://github.com/imapsync/imapsync/blob/master/FAQ.d/FAQ.Gmail.txt

On 12/5/2020 10:15 PM, Tony White wrote:

Hi folks,
  Is there a simple way of importing a gmail account email into
QMT please?
  We have a new domain client that wants their three email accounts
from gmail copied into their qmt domain.

TIA :)



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



[qmailtoaster] Gmail account to be imported to qmt

2020-12-05 Thread Tony White

Hi folks,
  Is there a simple way of importing a gmail account email into
QMT please?
  We have a new domain client that wants their three email accounts
from gmail copied into their qmt domain.

TIA :)

--
best wishes
  Tony White


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] Forwarding email via thunderbird

2020-06-20 Thread Tony White

Hi Eric,
  Sure did. Thanks for the tip.
Found another item like it a bit later yesterday.

best wishes
  Tony White

http://acrosstechnology.com.au
4a Birmingham Road
Mount Evelyn
Victoria
Australia 3796

Telephone No's
VIC : 0481 362 743

Please note: YCS records all calls to better serve you.

IMPORTANT NOTICE

This communication including any file attachments is intended solely for
the use of the individual or entity to whom it is addressed. If you are
not the intended recipient, or the person responsible for delivering
this communication to the intended recipient, please immediately notify
the sender by email and delete the original transmission and its
contents. Any unauthorised use, dissemination, forwarding, printing or
copying of this communication including file attachments is prohibited.
It is your responsibility to scan this communication including any file
attachments for viruses and other defects. To the extent permitted by
law, Yea Computing Services and its associates will not be liable for
any loss or damage arising in any way from this communication including
any file attachments.
You may not disclose this information to a third party without written
permission from the Author.

On 21/6/20 12:20 am, Eric Broch wrote:

https://thomas-cokelaer.info/blog/2011/08/thunderbird-hangs-forever-when-copying-message-to-sent-folder/

https://support.mozilla.org/en-US/questions/1242001

On 6/20/2020 7:07 AM, Tony White wrote:

Hi folks,
  I have a personal issue I cannot resolve.
I ave numerous email accounts and all but one can forward emails.
The only one that cannot forward is the last one I have created
and it attempts to forward the emails but gets stuck at "Status: Copying message to 
sent folder".
I have checked all the permissions on the folders and there is plenty of disk 
space.
It stops at this point on every email being forwarded large or small.

  Does anyone have any idea as to why this might happen please?

TIA :)



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



[qmailtoaster] Forwarding email via thunderbird

2020-06-20 Thread Tony White

Hi folks,
  I have a personal issue I cannot resolve.
I ave numerous email accounts and all but one can forward emails.
The only one that cannot forward is the last one I have created
and it attempts to forward the emails but gets stuck at "Status: Copying message to 
sent folder".
I have checked all the permissions on the folders and there is plenty of disk 
space.
It stops at this point on every email being forwarded large or small.

  Does anyone have any idea as to why this might happen please?

TIA :)

--
best wishes
  Tony White


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] SMTPS Port - Who is Failing ?

2020-04-18 Thread Tony White

Hi David,
The ip you are having issues with returns (NXDOMAIN) so try
using this or a variant on the search string to find what
you are looking for.

-- snip --
#!/bin/bash
mdate=`date +%c`
mip=$1
### must be root ###
if [ `whoami` != "root" ]; then
    echo ""
    echo "$0 must be run as root"
    echo ""
    exit 1
fi;

export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
is_ip="grep -Ec 
'^[1-2]?[0-9]?[0-9]\.[0-2]?[0-9]?[0-9]\.[0-2]?[0-9]?[0-9]\.[0-2]?[0-9]?[0-9](\/[0-3]?[0-9])?$'"

 is_v=`grep $1 /var/log/qmail/smtp/current | wc -l`
 echo "Counted : $is_v entries"

if [ "$is_v" != "" ]; then
   is_host=`host $1`
   echo "Host RDNS = $is_host"
   if echo "$is_host" | grep -q "(NXDOMAIN)"; then
   #  echo "(NX Domain) found, block IP automatically..."
   # /lscripts/blockip $mip
    read -p "(NX Domain) found, block IP automatically Y/N : " yn
    case $yn in
  [Yy]* ) `/lscripts/blockip $mip`;;
  [Nn]* ) exit;;
    esac
   fi;
fi;

-- snip --

Try this to count the number of times an ip connects..

--snip --
#!/bin/bash
PATTERN="DENIED"
FILE="/var/log/qmail/smtp/current"
f1="/tmp/ips.txt"
f2="/tmp/current.txt"
f3="/tmp/ipn.txt"

if [ -n "$1" ] ;
then
  cd /var/log/qmail/smtp
  newfile=`lshead -t @* | head -n1`
  echo "Scanning : "$newfile
  FILE="/var/log/qmail/smtp/$newfile"
fi

echo $FILE

[[ -f "$f1" ]] && rm -f "$f1"
[[ -f "$f2" ]] && rm -f "$f2"
# was -q between grep ans $PATTERN
if grep -q $PATTERN $FILE;
 then
 #echo "Here are the Strings with the Pattern '$PATTERN':"
 echo -e "$(grep $PATTERN $FILE > $f2)\n"
 #echo -e "$(wc -l $f2)\n"
 while read line
 do
      ar=($line)
  #echo -e "${ar[8]}\n"
  echo -e ${ar[8]}>> "$f1"
    done < "$f2"
    echo -e "$(sort -n $f1 > $f3)"
    echo -e "$(uniq -dc $f3)"
  else
 echo "Error: The Pattern '$PATTERN' was NOT Found in '$FILE'"
 echo "Exiting..."
 exit 0
fi

-- snip --

best wishes
  Tony White

On 18/4/20 8:33 pm, David Bray wrote:


Hi Tony, thanks
But not so much looking for a solution to block ips.

I’m needing to identify which ips to block

On Sat, 18 Apr 2020 at 8:19 pm, Tony White mailto:t...@ycs.com.au>> wrote:

Or this...

-- snip --
#!/bin/bash
logf="/var/log/blockip.log"
mdate=`date +%c`
mip=$1
### must be root ###
if [ `whoami` != "root" ]; then
 echo ""
 echo "$0 must be run as root"
 echo ""
 exit 1
fi;

if [ $mip == "--help" ]; then
   echo ""
   echo "Help: Block single and subnet IP's"
   echo ""
   echo "blockip 130.2.1.1"
   echo "blockip 130.2.1.0/24 <http://130.2.1.0/24>"
   echo ""
   exit 1
fi;

mip1=${mip:0:6};
# your lan range if needed or comment out
if [ $mip1 == "192.168.1." ]; then  # change ip to suit
   echo "$mdate Discarding LAN drop request for $mip1" >> $logf
   exit 1
fi;


# whitelist special clients...
# change the IP.ADDR.ESS to suit.
# comment out to remove
if [ $mip == "IP.ADDR.ESS" ] || [ $mip == "IP.ADDR.ESS" ] || [ $mip == "IP.ADDR.ESS" 
] || [ $mip == "IP.ADDR.ESS" ] || [
$mip == "IP.ADDR.ESS" ] ; then
   echo "$mdate Discarding WAN drop request for $mip" >> $logf
   echo "$mdate Discarding WAN drop request for $mip"
   exit 1
fi;

export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
is_ip="grep -Ec 
'^[1-2]?[0-9]?[0-9]\.[0-2]?[0-9]?[0-9]\.[0-2]?[0-9]?[0-9]\.[0-2]?[0-9]?[0-9](\/[0-3]?[0-9])?$'"

if [ `echo $mip |eval $is_ip` != "1" ]; then
   echo "$mdate Error in IP address $mip" >> $logf
   echo "$mdate Error in IP address $mip"
else
   iptables -I INPUT -s $mip -j DROP
   echo "iptables -I INPUT -s $mip -j DROP"
   echo "iptables -I INPUT -s $mip -j DROP" >> /etc/rc.d/rc.blockedips
   echo "$mdate now dropping all packets from $mip" >> $logf
fi;
-- snip --

best wishes
   Tony White

On 18/4/20 8:09 pm, Tony White wrote:

> Hi David,
>   Sorry try this instead...
>
> -- snip --
> #!/bin/sh
> logf="/var/log/black

Re: [qmailtoaster] SMTPS Port - Who is Failing ?

2020-04-18 Thread Tony White

Or this...

-- snip --
#!/bin/bash
logf="/var/log/blockip.log"
mdate=`date +%c`
mip=$1
### must be root ###
if [ `whoami` != "root" ]; then
    echo ""
    echo "$0 must be run as root"
    echo ""
    exit 1
fi;

if [ $mip == "--help" ]; then
  echo ""
  echo "Help: Block single and subnet IP's"
  echo ""
  echo "blockip 130.2.1.1"
  echo "blockip 130.2.1.0/24"
  echo ""
  exit 1
fi;

mip1=${mip:0:6};
# your lan range if needed or comment out
if [ $mip1 == "192.168.1." ]; then  # change ip to suit
  echo "$mdate Discarding LAN drop request for $mip1" >> $logf
  exit 1
fi;


# whitelist special clients...
# change the IP.ADDR.ESS to suit.
# comment out to remove
if [ $mip == "IP.ADDR.ESS" ] || [ $mip == "IP.ADDR.ESS" ] || [ $mip == "IP.ADDR.ESS" ] || [ $mip == "IP.ADDR.ESS" ] || [ 
$mip == "IP.ADDR.ESS" ] ; then

  echo "$mdate Discarding WAN drop request for $mip" >> $logf
  echo "$mdate Discarding WAN drop request for $mip"
  exit 1
fi;

export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
is_ip="grep -Ec 
'^[1-2]?[0-9]?[0-9]\.[0-2]?[0-9]?[0-9]\.[0-2]?[0-9]?[0-9]\.[0-2]?[0-9]?[0-9](\/[0-3]?[0-9])?$'"

if [ `echo $mip |eval $is_ip` != "1" ]; then
  echo "$mdate Error in IP address $mip" >> $logf
  echo "$mdate Error in IP address $mip"
else
  iptables -I INPUT -s $mip -j DROP
  echo "iptables -I INPUT -s $mip -j DROP"
  echo "iptables -I INPUT -s $mip -j DROP" >> /etc/rc.d/rc.blockedips
  echo "$mdate now dropping all packets from $mip" >> $logf
fi;
-- snip --

best wishes
  Tony White

On 18/4/20 8:09 pm, Tony White wrote:


Hi David,
  Sorry try this instead...

-- snip --
#!/bin/sh
logf="/var/log/blacklist_ip.log"
mdate=`date +%c`
### must be root ###
if [ `whoami` != "root" ]; then
    echo ""
    echo "$0 must be ran as root"
    echo ""
    exit 1
fi
export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
is_ip="grep -Ec 
'^[1-2]?[0-9]?[0-9]\.[0-2]?[0-9]?[0-9]\.[0-2]?[0-9]?[0-9]\.[0-2]?[0-9]?[0-9](\/[0-3]?[0-9])?$'"

if [ `echo $1 |eval $is_ip` != "1" ]; then
echo "$mdate Error in IP address $1" >> $logf
else
echo "$1" >> /opt/spamdyke/etc/blacklist_ip
echo "$mdate now dropping all packets from $1" >> $logf
fi
--snip --

best wishes
  Tony White
On 18/4/20 8:04 pm, Tony White wrote:


Hi David,
  Try using this little script...

-- snip --
#!/bin/bash
logf="/var/log/blockip.log"
mdate=`date +%c`
mip=$1
### must be root ###
if [ `whoami` != "root" ]; then
    echo ""
    echo "$0 must be run as root"
    echo ""
    exit 1
fi;

if [ $mip == "--help" ]; then
  echo ""
  echo "Help: Block single and subnet IP's"
  echo ""
  echo "blockip 132.2.1.1"
  echo "blockip 132.1.0/24"
  echo ""
  exit 1
fi;

-- snip --

worked for me forever...
Use qtp watchall to monitor the logs and use th output to manually block ips or 
subnets

If you need more hit me off list.

best wishes
  Tony White
On 18/4/20 2:59 pm, David Bray wrote:


I can see I'm getting hammered on my smtps port

How can I mitigate this?

I can see the IP's in /var/log/qmail/smtps/current

*but where do I actually see that the smtp auth actually fails ?*

or do I need to increase the logging somewhere ?

if I tail -f /var/log/dovecot.log

I can see the imap and pop failures

thanks in advance

David Bray
0418 745334
2 ∞ & <



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] SMTPS Port - Who is Failing ?

2020-04-18 Thread Tony White

Hi David,
  Sorry try this instead...

-- snip --
#!/bin/sh
logf="/var/log/blacklist_ip.log"
mdate=`date +%c`
### must be root ###
if [ `whoami` != "root" ]; then
    echo ""
    echo "$0 must be ran as root"
    echo ""
    exit 1
fi
export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin
is_ip="grep -Ec 
'^[1-2]?[0-9]?[0-9]\.[0-2]?[0-9]?[0-9]\.[0-2]?[0-9]?[0-9]\.[0-2]?[0-9]?[0-9](\/[0-3]?[0-9])?$'"

if [ `echo $1 |eval $is_ip` != "1" ]; then
echo "$mdate Error in IP address $1" >> $logf
else
echo "$1" >> /opt/spamdyke/etc/blacklist_ip
echo "$mdate now dropping all packets from $1" >> $logf
fi
--snip --

best wishes
  Tony White
On 18/4/20 8:04 pm, Tony White wrote:


Hi David,
  Try using this little script...

-- snip --
#!/bin/bash
logf="/var/log/blockip.log"
mdate=`date +%c`
mip=$1
### must be root ###
if [ `whoami` != "root" ]; then
    echo ""
    echo "$0 must be run as root"
    echo ""
    exit 1
fi;

if [ $mip == "--help" ]; then
  echo ""
  echo "Help: Block single and subnet IP's"
  echo ""
  echo "blockip 132.2.1.1"
  echo "blockip 132.1.0/24"
  echo "--------"
  exit 1
fi;

-- snip --

worked for me forever...
Use qtp watchall to monitor the logs and use th output to manually block ips or 
subnets

If you need more hit me off list.

best wishes
  Tony White
On 18/4/20 2:59 pm, David Bray wrote:


I can see I'm getting hammered on my smtps port

How can I mitigate this?

I can see the IP's in /var/log/qmail/smtps/current

*but where do I actually see that the smtp auth actually fails ?*

or do I need to increase the logging somewhere ?

if I tail -f /var/log/dovecot.log

I can see the imap and pop failures

thanks in advance

David Bray
0418 745334
2 ∞ & <



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] SMTPS Port - Who is Failing ?

2020-04-18 Thread Tony White

Hi David,
  Try using this little script...

-- snip --
#!/bin/bash
logf="/var/log/blockip.log"
mdate=`date +%c`
mip=$1
### must be root ###
if [ `whoami` != "root" ]; then
    echo ""
    echo "$0 must be run as root"
    echo ""
    exit 1
fi;

if [ $mip == "--help" ]; then
  echo ""
  echo "Help: Block single and subnet IP's"
  echo ""
  echo "blockip 132.2.1.1"
  echo "blockip 132.1.0/24"
  echo ""
  exit 1
fi;

-- snip --

worked for me forever...
Use qtp watchall to monitor the logs and use th output to manually block ips or 
subnets

If you need more hit me off list.

best wishes
  Tony White
On 18/4/20 2:59 pm, David Bray wrote:


I can see I'm getting hammered on my smtps port

How can I mitigate this?

I can see the IP's in /var/log/qmail/smtps/current

*but where do I actually see that the smtp auth actually fails ?*

or do I need to increase the logging somewhere ?

if I tail -f /var/log/dovecot.log

I can see the imap and pop failures

thanks in advance

David Bray
0418 745334
2 ∞ & <



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



[qmailtoaster] blocking with spamdyke using only the username@

2020-01-14 Thread Tony White

Hi,
  Can someone tell how to block using spamdyke
using only the username with no domain please?
  I have an attacker always using the same username
but from many many ip addresses.
  I have not found anything on the spamdyke site to
help so any ideas are gratefully acceptde.

--
best wishes
  Tony White


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] domain keys issue

2019-11-22 Thread Tony White

Hi Eric,
  Did that just now and restarted qmail.
Receiving emails then generated qq Soft rejects.
I relinked the qmail-dk as qmail-queue leaving out
the change to tcp.smtp and the error stopped.
Does this make any sense to you?

TIA :)

best wishes
  Tony White



On 23/11/19 1:56 pm, Eric Broch wrote:

List your bin directory:

# ls -la /var/qmail/bin

What's in tcp.smtp:

# cat /etc/tcprules.d/tcp.smtp


On 11/22/2019 6:22 PM, Tony White wrote:

Hi folks,
  Im stuck.
I have been trying to disable domainkeys again but each time I try
i get this error in my logs...

qmail error 451 qq trouble creating files in queue

I tried this method as well and still get the sameresult.

http://wiki.qmailtoaster.com/index.php/Disabling_Domain_Keys

Any help appreciated, thanks.



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com





-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



[qmailtoaster] domain keys issue

2019-11-22 Thread Tony White

Hi folks,
  Im stuck.
I have been trying to disable domainkeys again but each time I try
i get this error in my logs...

qmail error 451 qq trouble creating files in queue

I tried this method as well and still get the sameresult.

http://wiki.qmailtoaster.com/index.php/Disabling_Domain_Keys

Any help appreciated, thanks.

--
best wishes
  Tony White


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



[qmailtoaster] Qmail COS7 install question.

2019-10-20 Thread Tony White

Hi folks,
  Is there a specific reason why the QMT install
for COS7 has to be a minimal install?

--
best wishes
  Tony White


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] iMAP under fire on my server

2019-10-17 Thread Tony White

Hi,
  Follow up..
I should have mentioned that you can edit fail2ban.conf
the save info to a lof file by editing the conf
file and set

logtarget = /var/log/fail2ban.log
loglevel = 3


best wishes
  Tony White

On 17/10/19 6:43 pm, ChandranManikandan wrote:


Hi Friends,

I am also facing the same problem and i had running IPtables and fail2ban.
but still issue was there.
Can i run csf also on top of that.
Am running centos 6 servers.
Appreciate your hep.

On Sun, Oct 13, 2019 at 10:12 PM Tony White  wrote:


Hi,
Correct again but it seems the regex is at fault.
The regex generates no results for courierlogin
nor couriersmtp.
Trying to build a regex for these but it is not my first
language...

best wishes
Tony White

On 14/10/19 12:19 am, Solo wrote:

Hi Tony.

What log do You expect entries in ? fail2ban.log ?

Make sure the regex in the filter.d/*.conf file You use matches the

entries in the log file(s) it monitors


A good idea is to test the *.conf file using :
fail2ban-regex "path to the log to monitor"  "path to the fail2ban

filter"

like : fail2ban-regex /var/log/qmail/submission/current

/etc/fail2ban/filter.d/submission.conf

Hope this helps

Cheers
Finn

Den 13-10-2019 kl. 14:07 skrev Tony White:

Hi,
Well I have enabled the two in the filter.d directory you mentioned
restarted/reloaded fail2ban and no change. Still no entries in the
log file.

best wishes
Tony White

On 13/10/19 7:36 pm, Solo wrote:


Hi Tony.

Have You tried fail2ban ?

Cheers
Finn

Den 13-10-2019 kl. 05:01 skrev Tony White:

Hi folks,
Sorry to disturb but I have been trying to fix this for two days

now.

My iMap server is methodically (brute force) attacked over many many

ips.

I have written scripts to auto block the ips but they only try twice

for two

different names then us a different ip!.

Has anyone encountered this before and did you find a resolution for

it?

Can I add an entry in the run scrip for a LOGIN FAILED to block the ip
first time it connects?

TIA :)

FYI the email addresses are not even remotely valid but it is

frustrating.



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail:

qmailtoaster-list-h...@qmailtoaster.com




-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail:

qmailtoaster-list-h...@qmailtoaster.com



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com





-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] iMAP under fire on my server

2019-10-17 Thread Tony White

Hi,
  got it working finally...

If you have already got fail2ban running then try these settings.
They finally stopped my issues after 13 hours and blocking hundreds
of unique ip's.


This is a variation on a set of files I found by searching on the web.
I would attribute them if I knew who wrote them.
Edit fail2ban's jail.local in the /etc/fail2ban directory.

Insert this exactly.

[qmail-vpopmail-imap-pw-fail]
enabled  = true
filter   = qmail-vpopmail-imap-pw-fail
action   = iptables-multiport[name=IMAP, port="143,585,993", protocol=tcp]
logpath  = /var/log/qmail/imap4/current
maxretry = 1
bantime  = 864000
findtime = 3600

create a file called qmail-vpopmail-imap-pw-fail.conf and insert this text

# Fail2Ban configuration file
#
[Definition]
#Looks for failed logins into IMAP
failregex = ^.* INFO\: LOGIN FAILED, user\=.*\, ip\=\[\]
ignoreregex =


After editing restart fail2ban or reboot, up to you.
Then tail the imap log to see the logins slow down over the next few hours.


If you need more please contact me off list.

I also have changes to the pop3 run file to record the login details.


Hope this helps.

best wishes
  Tony White

http://acrosstechnology.com.au
4a Birmingham Road
Mount Evelyn
Victoria
Australia 3796

Telephone No's
VIC : 0481 362 743

Please note: YCS records all calls to better serve you.

IMPORTANT NOTICE

This communication including any file attachments is intended solely for
the use of the individual or entity to whom it is addressed. If you are
not the intended recipient, or the person responsible for delivering
this communication to the intended recipient, please immediately notify
the sender by email and delete the original transmission and its
contents. Any unauthorised use, dissemination, forwarding, printing or
copying of this communication including file attachments is prohibited.
It is your responsibility to scan this communication including any file
attachments for viruses and other defects. To the extent permitted by
law, Yea Computing Services and its associates will not be liable for
any loss or damage arising in any way from this communication including
any file attachments.
You may not disclose this information to a third party without written
permission from the Author.

On 17/10/19 6:43 pm, ChandranManikandan wrote:

Hi Friends,

I am also facing the same problem and i had running IPtables and fail2ban.
but still issue was there.
Can i run csf also on top of that.
Am running centos 6 servers.
Appreciate your hep.

On Sun, Oct 13, 2019 at 10:12 PM Tony White  wrote:


Hi,
Correct again but it seems the regex is at fault.
The regex generates no results for courierlogin
nor couriersmtp.
Trying to build a regex for these but it is not my first
language...

best wishes
Tony White

On 14/10/19 12:19 am, Solo wrote:

Hi Tony.

What log do You expect entries in ? fail2ban.log ?

Make sure the regex in the filter.d/*.conf file You use matches the

entries in the log file(s) it monitors


A good idea is to test the *.conf file using :
fail2ban-regex "path to the log to monitor"  "path to the fail2ban

filter"

like : fail2ban-regex /var/log/qmail/submission/current

/etc/fail2ban/filter.d/submission.conf

Hope this helps

Cheers
Finn

Den 13-10-2019 kl. 14:07 skrev Tony White:

Hi,
Well I have enabled the two in the filter.d directory you mentioned
restarted/reloaded fail2ban and no change. Still no entries in the
log file.

best wishes
Tony White

On 13/10/19 7:36 pm, Solo wrote:


Hi Tony.

Have You tried fail2ban ?

Cheers
Finn

Den 13-10-2019 kl. 05:01 skrev Tony White:

Hi folks,
Sorry to disturb but I have been trying to fix this for two days

now.

My iMap server is methodically (brute force) attacked over many many

ips.

I have written scripts to auto block the ips but they only try twice

for two

different names then us a different ip!.

Has anyone encountered this before and did you find a resolution for

it?

Can I add an entry in the run scrip for a LOGIN FAILED to block the ip
first time it connects?

TIA :)

FYI the email addresses are not even remotely valid but it is

frustrating.



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail:

qmailtoaster-list-h...@qmailtoaster.com




-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail:

qmailtoaster-list-h...@qmailtoaster.com



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional command

Re: [qmailtoaster] iMAP under fire on my server

2019-10-13 Thread Tony White

Hi,
  Correct again but it seems the regex is at fault.
The regex generates no results for courierlogin
nor couriersmtp.
  Trying to build a regex for these but it is not my first
language...

best wishes
  Tony White

On 14/10/19 12:19 am, Solo wrote:

Hi Tony.

What log do You expect entries in ? fail2ban.log ?

Make sure the regex in the filter.d/*.conf file You use matches the entries in 
the log file(s) it monitors


A good idea is to test the *.conf file using :
fail2ban-regex "path to the log to monitor"  "path to the fail2ban filter"

like : fail2ban-regex /var/log/qmail/submission/current 
/etc/fail2ban/filter.d/submission.conf

Hope this helps

Cheers
Finn

Den 13-10-2019 kl. 14:07 skrev Tony White:

Hi,
   Well I have enabled the two in the filter.d directory you mentioned
restarted/reloaded fail2ban and no change. Still no entries in the
log file.

best wishes
   Tony White

On 13/10/19 7:36 pm, Solo wrote:


Hi Tony.

Have You tried fail2ban ?

Cheers
Finn

Den 13-10-2019 kl. 05:01 skrev Tony White:

Hi folks,
   Sorry to disturb but I have been trying to fix this for two days now.

My iMap server is methodically (brute force) attacked over many many ips.
I have written scripts to auto block the ips but they only try twice for two
different names then us a different ip!.

Has anyone encountered this before and did you find a resolution for it?

Can I add an entry in the run scrip for a LOGIN FAILED to block the ip
first time it connects?

TIA :)

FYI the email addresses are not even remotely valid but it is frustrating.




-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com





-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com




-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com





-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] iMAP under fire on my server

2019-10-13 Thread Tony White

Hi all,
  FYI I have just disabled courier for now.

best wishes
  Tony White

On 13/10/19 11:07 pm, Tony White wrote:


Hi,
  Well I have enabled the two in the filter.d directory you mentioned
restarted/reloaded fail2ban and no change. Still no entries in the
log file.

best wishes
  Tony White

On 13/10/19 7:36 pm, Solo wrote:


Hi Tony.

Have You tried fail2ban ?

Cheers
Finn

Den 13-10-2019 kl. 05:01 skrev Tony White:

Hi folks,
   Sorry to disturb but I have been trying to fix this for two days now.

My iMap server is methodically (brute force) attacked over many many ips.
I have written scripts to auto block the ips but they only try twice for two
different names then us a different ip!.

Has anyone encountered this before and did you find a resolution for it?

Can I add an entry in the run scrip for a LOGIN FAILED to block the ip
first time it connects?

TIA :)

FYI the email addresses are not even remotely valid but it is frustrating.




-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com





-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com





-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] iMAP under fire on my server

2019-10-13 Thread Tony White

Hi,
  Well I have enabled the two in the filter.d directory you mentioned
restarted/reloaded fail2ban and no change. Still no entries in the
log file.

best wishes
  Tony White

On 13/10/19 7:36 pm, Solo wrote:


Hi Tony.

Have You tried fail2ban ?

Cheers
Finn

Den 13-10-2019 kl. 05:01 skrev Tony White:

Hi folks,
   Sorry to disturb but I have been trying to fix this for two days now.

My iMap server is methodically (brute force) attacked over many many ips.
I have written scripts to auto block the ips but they only try twice for two
different names then us a different ip!.

Has anyone encountered this before and did you find a resolution for it?

Can I add an entry in the run scrip for a LOGIN FAILED to block the ip
first time it connects?

TIA :)

FYI the email addresses are not even remotely valid but it is frustrating.




-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com





-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



[qmailtoaster] iMAP under fire on my server

2019-10-12 Thread Tony White

Hi folks,
  Sorry to disturb but I have been trying to fix this for two days now.

My iMap server is methodically (brute force) attacked over many many ips.
I have written scripts to auto block the ips but they only try twice for two
different names then us a different ip!.

Has anyone encountered this before and did you find a resolution for it?

Can I add an entry in the run scrip for a LOGIN FAILED to block the ip
first time it connects?

TIA :)

FYI the email addresses are not even remotely valid but it is frustrating.


--
best wishes
  Tony White


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] One domain email is not working from virtual host

2019-09-25 Thread Tony White

Hi,
  Did you do this iptables -F to flush the tables as well?
Can you telnet to localhost ports okay? Or do the time out also.
I tested ports 25,80,110,143,21 and several others none of which
responded at all.

Did you try restarting the second ip?


I tried an nmap
tony@T530-AEW:~/Desktop$ nmap reliancehrconsulting.com

Starting Nmap 7.60 ( https://nmap.org ) at 2019-09-25 20:49 AEST
Note: Host seems down. If it is really up, but blocking our ping probes, try -Pn
Nmap done: 1 IP address (0 hosts up) scanned in 3.04 seconds


Then tried this..

tony@T530-AEW:~/Desktop$ nmap -Pn reliancehrconsulting.com

Starting Nmap 7.60 ( https://nmap.org ) at 2019-09-25 20:50 AEST
Nmap scan report for reliancehrconsulting.com (49.128.39.123)
Host is up (0.100s latency).
rDNS record for 49.128.39.123: mail.reliancehrconsulting.com
Not shown: 998 filtered ports
PORT STATE  SERVICE
8080/tcp closed http-proxy
8443/tcp closed https-alt


best wishes
  Tony White

http://acrosstechnology.com.au
4a Birmingham Road
Mount Evelyn
Victoria
Australia 3796

Telephone No's
VIC : 0481 362 743

Please note: YCS records all calls to better serve you.

IMPORTANT NOTICE

This communication including any file attachments is intended solely for
the use of the individual or entity to whom it is addressed. If you are
not the intended recipient, or the person responsible for delivering
this communication to the intended recipient, please immediately notify
the sender by email and delete the original transmission and its
contents. Any unauthorised use, dissemination, forwarding, printing or
copying of this communication including file attachments is prohibited.
It is your responsibility to scan this communication including any file
attachments for viruses and other defects. To the extent permitted by
law, Yea Computing Services and its associates will not be liable for
any loss or damage arising in any way from this communication including
any file attachments.
You may not disclose this information to a third party without written
permission from the Author.

On 25/9/19 8:28 pm, ChandranManikandan wrote:

Hi Tony,

These ip's are pinging and hosting the same server with configure multiple 
network.
These are working earlier well but suddenly is not working this domain reliancehrconsulting.com 
<http://reliancehrconsulting.com>

i have stopped iptables also but no luck to respond the 143 and 25 ports and 
port 80 for this domain only.


On Wed, Sep 25, 2019 at 5:56 PM Tony White mailto:t...@ycs.com.au>> wrote:

Hi,

pan-asia.in <http://pan-asia.in> is 49.128.39.115

reliancehrconsulting.com <http://reliancehrconsulting.com> 49.128.39.123


    best wishes
   Tony White

On 25/9/19 7:03 pm, ChandranManikandan wrote:

> Hi Eric,
>
> The working domain is pan-asia.in <http://pan-asia.in> 
<http://pan-asia.in> and command is telnet domain.com
<http://domain.com> <http://domain.com> 143 and
> telnet domain.com <http://domain.com> <http://domain.com> 25.
> Both the domains are fqdn
> Working domain pan-asia.in <http://pan-asia.in> <http://pan-asia.in>
> non working domain reliancehrconsulting.com <http://reliancehrconsulting.com> 
<http://reliancehrconsulting.com>
>
>
> On Wed, Sep 25, 2019 at 4:12 PM Eric Broch mailto:ebr...@whitehorsetc.com>
<mailto:ebr...@whitehorsetc.com <mailto:ebr...@whitehorsetc.com>>> wrote:
>
>     What commands are you using to telnet to the working and non-working 
domains, the fqdn? If you are using the
fqdn has
>     the domain expired?
>
>     On 9/25/2019 12:44 AM, ChandranManikandan wrote:
>>     Hi Friends,
>>
>>     I have running centos 6.7 with 64 bit with multiple domains using 
qmailtoaster.
>>     all the domains configured web and email with letsencrypt 
certificate.
>>     One domain is not working suddenly web and email.
>>     I have tried to ping and able to get the ip address result.
>>     and also tried using telnet 143 and 25 port is not connecting, but 
the same ports are connected for other domain
>>     which was running the same machine.
>>     I have tried iptables stop but no luck.
>>     could anyone assist me to troubleshoot.
>>     Advance Appreciate your help
>>
>>     --
>>     */Regards,
>>     Manikandan.C
>>     /*
>
>
>
> --
> */Regards,
> Manikandan.C
> /*


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
<mailto:qmailtoaster-list-unsubscr...@qmailtoaster.com>
For additional commands, e-mail: qmailtoaster-list-h...@qmail

Re: [qmailtoaster] One domain email is not working from virtual host

2019-09-25 Thread Tony White

Hi,

pan-asia.in is 49.128.39.115

reliancehrconsulting.com 49.128.39.123


best wishes
  Tony White

On 25/9/19 7:03 pm, ChandranManikandan wrote:


Hi Eric,

The working domain is pan-asia.in <http://pan-asia.in> and command is telnet domain.com <http://domain.com> 143 and 
telnet domain.com <http://domain.com> 25.

Both the domains are fqdn
Working domain pan-asia.in <http://pan-asia.in>
non working domain reliancehrconsulting.com <http://reliancehrconsulting.com>


On Wed, Sep 25, 2019 at 4:12 PM Eric Broch mailto:ebr...@whitehorsetc.com>> wrote:

What commands are you using to telnet to the working and non-working 
domains, the fqdn? If you are using the fqdn has
the domain expired?

On 9/25/2019 12:44 AM, ChandranManikandan wrote:

Hi Friends,

I have running centos 6.7 with 64 bit with multiple domains using 
qmailtoaster.
all the domains configured web and email with letsencrypt certificate.
One domain is not working suddenly web and email.
I have tried to ping and able to get the ip address result.
and also tried using telnet 143 and 25 port is not connecting, but the same 
ports are connected for other domain
which was running the same machine.
I have tried iptables stop but no luck.
could anyone assist me to troubleshoot.
Advance Appreciate your help

-- 
*/Regards,

Manikandan.C
/*




--
*/Regards,
Manikandan.C
/*



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] One domain email is not working from virtual host

2019-09-25 Thread Tony White

Hi,
  I would check your firewall settings first.
Can you get a response from localhost testing on the same ports?

best wishes
  Tony White

On 25/9/19 7:03 pm, ChandranManikandan wrote:


Hi Eric,

The working domain is pan-asia.in <http://pan-asia.in> and command is telnet domain.com <http://domain.com> 143 and 
telnet domain.com <http://domain.com> 25.

Both the domains are fqdn
Working domain pan-asia.in <http://pan-asia.in>
non working domain reliancehrconsulting.com <http://reliancehrconsulting.com>


On Wed, Sep 25, 2019 at 4:12 PM Eric Broch mailto:ebr...@whitehorsetc.com>> wrote:

What commands are you using to telnet to the working and non-working 
domains, the fqdn? If you are using the fqdn has
the domain expired?

On 9/25/2019 12:44 AM, ChandranManikandan wrote:

Hi Friends,

I have running centos 6.7 with 64 bit with multiple domains using 
qmailtoaster.
all the domains configured web and email with letsencrypt certificate.
One domain is not working suddenly web and email.
I have tried to ping and able to get the ip address result.
and also tried using telnet 143 and 25 port is not connecting, but the same 
ports are connected for other domain
which was running the same machine.
I have tried iptables stop but no luck.
could anyone assist me to troubleshoot.
Advance Appreciate your help

-- 
*/Regards,

Manikandan.C
/*




--
*/Regards,
Manikandan.C
/*



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] Migrate Script from COS5.11 to COS7

2019-09-22 Thread Tony White

Hi Eric,
  Taking the plunge, umm yes maybe possibly still hate
systemd.
  I am trying to convert to COS 7 because there is no
real substitute for QMT. I am still looking at devuan
but there are migration issues I think due to systemduhh!

 Thanks Eric, I will try it this weekend.

best wishes
  Tony White

On 23/9/19 10:21 am, Eric Broch wrote:


I've used it, but it's not really a script.

Are you taking the plunge, Tony? ;-)

On 9/22/2019 4:49 PM, Tony White wrote:

Hi folks,
  Has anyone used Eric's script for migrating to CentOS7 from CentOS5.11 please?
Was it successful?



-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com





-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



[qmailtoaster] Migrate Script from COS5.11 to COS7

2019-09-22 Thread Tony White

Hi folks,
  Has anyone used Eric's script for migrating to CentOS7 from CentOS5.11 please?
Was it successful?

--
best wishes
  Tony White


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] qmail.org

2019-09-05 Thread Tony White

Bad news...

Domain runs out on 23/09/2019.

best wishes
  Tony White

On 6/9/19 2:21 am, Craig McLaughlin wrote:


dig qmail.org

; <<>> DiG 9.10.6 <<>> qmail.org
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 8050
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 1

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 512
;; QUESTION SECTION:
;qmail.org. IN A

Looks like the DNS record vanished.



On Thu, Sep 5, 2019 at 9:18 AM Eric Broch  wrote:


Did anyone notice that qmail.org is down?


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com





-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



[qmailtoaster] clamd upgrade!

2019-08-14 Thread Tony White

Hi folks,
  I have not got the latest clam av and would like to know
if I can simply upgrade it using the default method on the
clam site.

  Anyone any ideas please?

--
best wishes
  Tony White


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



[qmailtoaster] selinux removing extra permissions

2019-08-14 Thread Tony White

Hi All,
  I just noticed a feature on the website to disable selinux.
If you install it in the first place there are extra permissions
set that you might want to remove.

REMOVE (start in /)  -
find . -print0 |xargs -0 -n 1 setfattr -h -x security.selinux


--
best wishes
  Tony White

http://acrosstechnology.com.au
4 The Crescent
Yea
Victoria
Australia 3717

Telephone No's
VIC : 0481 362 743

Please note: YCS records all calls to better serve you.

IMPORTANT NOTICE

This communication including any file attachments is intended solely for
the use of the individual or entity to whom it is addressed. If you are
not the intended recipient, or the person responsible for delivering
this communication to the intended recipient, please immediately notify
the sender by email and delete the original transmission and its
contents. Any unauthorised use, dissemination, forwarding, printing or
copying of this communication including file attachments is prohibited.
It is your responsibility to scan this communication including any file
attachments for viruses and other defects. To the extent permitted by
law, Yea Computing Services and its associates will not be liable for
any loss or damage arising in any way from this communication including
any file attachments.
You may not disclose this information to a third party without written
permission from the Author.


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



[qmailtoaster] Slow speeds on qmt repos

2019-06-19 Thread Tony White

Hi Folks,
  I am trying to build a new server but am concerned
that I am only getting about ~8.5kb/sec.
  My link is running at 104Mb/s so I am reasonably
sure it is not my end.

  Is there something wrong please?

TIA :)

--
best wishes
  Tony White


-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] Outlook keeps complaining my cert is invalid

2019-05-25 Thread Tony White

Remo,
  I do not understand how this fits with your question.
Too many free options out there for this kind of product.
Sorry.

best wishes
  Tony White

On 26/5/19 1:18 pm, Remo Mattei wrote:


My friend developed this ..

http://www.mynas.com.au

Thanks


On May 25, 2019, at 20:04, Tony White mailto:t...@ycs.com.au>> wrote:

Hi Remo,
  Try using this site from Comodo to test your certificates.

https://crt.sh/?q=qmail7.italy1.com -> Ok

https://crt.sh/?q=q7.italy1.com -> fails, no cert found

https://crt.sh/?q=mail.italy1.com -> fails, no cert found

https://crt.sh/?q=italy1.com -> fails, no cert found

I still think it is down to your smtp and imap/pop3 server settings
in outlook.
Download Thunderbird portable and create the same account as imap
to see if it gives you the same error.

http://portableapps.com

best wishes
 Tony White

On 26/5/19 12:50 pm, Tony White wrote:


Remo,
  I noticed your certificate is from Comodo.
My certificate is from Comodo but now named
Sectigo. FYI.


Are your SMTP and pop3/imap using the same or different servers?

Ids the error on SMTP or pop3/imap?

Try a send only then a receive to see the error is on one or the other
or both.

The error is simply stating the (principal) domain cannot be verified.


best wishes
  Tony White

On 26/5/19 12:15 pm, Remo Mattei wrote:


I have it on qmail7.italy1.com <http://qmail7.italy1.com>



Still gives me that crap!

Hate outlook!


On May 25, 2019, at 19:13, Tony White mailto:t...@ycs.com.au>> wrote:

Hi Remo,
  Your mail server reverse with these names.

host 208.53.44.237
237.44.53.208.in-addr.arpa domain name pointer qmail7.italy1.com 
<http://qmail7.italy1.com>.
237.44.53.208.in-addr.arpa domain name pointer q7.italy1.com 
<http://q7.italy1.com>.
237.44.53.208.in-addr.arpa domain name pointer mail.italy1.com 
<http://mail.italy1.com>.

If your ssl certificate is only for qmail7 and you are using either
q7 or mail then maybe this is the issue.

See if your outlook setup is using the qmail7 server name if not change
it to it and try again.



best wishes
 Tony White

On 26/5/19 9:25 am, Remo Mattei wrote:


I added to several places in the windows.. drives me nuts! But still get popups!

Remo


On May 25, 2019, at 07:58, Tony White mailto:t...@ycs.com.au> 
<mailto:t...@ycs.com.au>> wrote:

openssl s_client -connect your.server.name:443





-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com 
<mailto:qmailtoaster-list-unsubscr...@qmailtoaster.com>

For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com 
<mailto:qmailtoaster-list-h...@qmailtoaster.com>






-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com





-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com






-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



Re: [qmailtoaster] Outlook keeps complaining my cert is invalid

2019-05-25 Thread Tony White

Hi Remo,
  Try using this site from Comodo to test your certificates.

https://crt.sh/?q=qmail7.italy1.com -> Ok

https://crt.sh/?q=q7.italy1.com -> fails, no cert found

https://crt.sh/?q=mail.italy1.com -> fails, no cert found

https://crt.sh/?q=italy1.com -> fails, no cert found

I still think it is down to your smtp and imap/pop3 server settings
in outlook.
Download Thunderbird portable and create the same account as imap
to see if it gives you the same error.

http://portableapps.com

best wishes
  Tony White

On 26/5/19 12:50 pm, Tony White wrote:


Remo,
  I noticed your certificate is from Comodo.
My certificate is from Comodo but now named
Sectigo. FYI.


Are your SMTP and pop3/imap using the same or different servers?

Ids the error on SMTP or pop3/imap?

Try a send only then a receive to see the error is on one or the other
or both.

The error is simply stating the (principal) domain cannot be verified.


best wishes
  Tony White

On 26/5/19 12:15 pm, Remo Mattei wrote:


I have it on qmail7.italy1.com <http://qmail7.italy1.com>



Still gives me that crap!

Hate outlook!


On May 25, 2019, at 19:13, Tony White mailto:t...@ycs.com.au>> wrote:

Hi Remo,
  Your mail server reverse with these names.

host 208.53.44.237
237.44.53.208.in-addr.arpa domain name pointer qmail7.italy1.com 
<http://qmail7.italy1.com>.
237.44.53.208.in-addr.arpa domain name pointer q7.italy1.com 
<http://q7.italy1.com>.
237.44.53.208.in-addr.arpa domain name pointer mail.italy1.com 
<http://mail.italy1.com>.

If your ssl certificate is only for qmail7 and you are using either
q7 or mail then maybe this is the issue.

See if your outlook setup is using the qmail7 server name if not change
it to it and try again.



best wishes
 Tony White

On 26/5/19 9:25 am, Remo Mattei wrote:


I added to several places in the windows.. drives me nuts! But still get popups!

Remo


On May 25, 2019, at 07:58, Tony White mailto:t...@ycs.com.au> 
<mailto:t...@ycs.com.au>> wrote:

openssl s_client -connect your.server.name:443





-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com 
<mailto:qmailtoaster-list-unsubscr...@qmailtoaster.com>

For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com 
<mailto:qmailtoaster-list-h...@qmailtoaster.com>






-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com





-
To unsubscribe, e-mail: qmailtoaster-list-unsubscr...@qmailtoaster.com
For additional commands, e-mail: qmailtoaster-list-h...@qmailtoaster.com



  1   2   3   4   5   >