Welcome Guest. Please Login or Register  


You are here: Index > Webuzo > General Support > Topic : email accounts not working in squirrelmail login



Threaded Mode | Print  

 email accounts not working in squirrelmail login (10 Replies, Read 71447 times)
niti201012
Group: Member
Post Group: Newbie
Posts: 6
Status:
Im using webuzo centos 7 to my server

Installed exim, dovecot and have all its configuration setup for the mail server...

i can able to add user in etc/dovecot/user in vi and use the login details in squirrelmail

but the only problem is when adding an email account through webuzo>email>email account... im not able to use that login details in webuzo>email>access mail (squirrel mail)

whereas adding an user via terminal to etc/dovecot/user is working flawlessly

solution plz...
IP: --   

email accounts not working in squirrelmail login
abhijeetm
Group: Virtualizor Team
Post Group: Working Newbie
Posts: 97
Status:
In default Dovecot and Exim settings, user added through Webuzo End User Panel should work on any email client you use.

Have you made any configuration changes on Exim/Dovecot?

Squirrel Mail should work even for email accounts added from Webuzo EndUser Panel.

IP: --   

email accounts not working in squirrelmail login
niti201012
Group: Member
Post Group: Newbie
Posts: 6
Status:
i just tested with both default config and edited config of exim and dovecot... still not able to login with the details from webuzo enduser panel

and the edited config are here https://www.rosehosting.com/blog/setup-a-mailserver-with-exim-and-dovecot-on-a-centos-7-vps/
IP: --   

email accounts not working in squirrelmail login
niti201012
Group: Member
Post Group: Newbie
Posts: 6
Status:
Quote From : niti201012 November 19, 2015, 11:03 am
i just tested with both default config and edited config of exim and dovecot... still not able to login with the details from webuzo enduser panel

and the edited config are here https://www.rosehosting.com/blog/setup-a-mailserver-with-exim-and-dovecot-on-a-centos-7-vps/


here is the changes i done

INSTALL AND CONFIGURE EXIM

Install exim on the CentOS 7 virtual server using yum:

## yum install exim
next, open /etc/exim/exim.conf with your favorite editor and configure exim as follows:

## cp /etc/exim/exim.conf{,.orig}
## vim /etc/exim/exim.conf

primary_hostname = mail.mydomain.com
domainlist local_domains = @ : mydomain.com

tls_advertise_hosts = *
tls_certificate = /etc/ssl/mail.mydomain.com.crt
tls_privatekey = /etc/ssl/mail.mydomain.com.key

auth_advertise_hosts = *
find the transport section and edit the following:

local_delivery:
  driver = appendfile
  directory = $home/Maildir
  maildir_format
  maildir_use_size_file
  delivery_date_add
  envelope_to_add
  return_path_add
scroll down the the authenticators section and add the following lines:

dovecot_login:
  driver = dovecot
  public_name = LOGIN
  server_socket = /var/run/dovecot/auth-client
  server_set_id = $auth1

dovecot_plain:
  driver = dovecot
  public_name = PLAIN
  server_socket = /var/run/dovecot/auth-client
  server_set_id = $auth1
Start the EXIM MTA and add it to system’s startup using systemctl

## systemctl start exim
## systemctl status exim
## systemctl enable exim


INSTALL AND CONFIGURE DOVECOT

Install Dovecot on the system using yum

## yum install dovecot
Once installed, configure SSL in Dovecot by editing the following:

## vim /etc/dovecot/conf.d/10-ssl.conf

ssl = yes
ssl_cert = </etc/ssl/mail.mydomain.com.crt
ssl_key = </etc/ssl/mail.mydomain.com.key
next, allow plaintext authentication in /etc/dovecot/conf.d/10-auth.conf:

## vim /etc/dovecot/conf.d/10-auth.conf

disable_plaintext_auth = no
auth_mechanisms = plain login
configure mailbox location and type in /etc/dovecot/conf.d/10-mail.conf:

## vim /etc/dovecot/conf.d/10-mail.conf

mail_location = maildir:~/Maildir
Set-up Dovecot so that is allows Exim to use its authentication system in /etc/dovecot/conf.d/10-master.conf

## vim /etc/dovecot/conf.d/10-master.conf

service auth {
...
    unix_listener auth-client {
        mode = 0660
        user = exim
    }
}
Start Dovecot and add it to system’s start-up using:

## systemctl start dovecot
## systemctl status dovecot
## systemctl enable dovecot
IP: --   

email accounts not working in squirrelmail login
peopleinside
Group: Member
Post Group: Super Member
Posts: 1394
Status:

Open source, web and security passionate
What error you see when try to log in?


-----------------------
PeopleInside  :angel:

Web, security, open source passionate.
IP: --   

email accounts not working in squirrelmail login
niti201012
Group: Member
Post Group: Newbie
Posts: 6
Status:
Quote From : peopleinside November 19, 2015, 12:26 pm
What error you see when try to log in?


HI Marc

i get username and password is wrong
IP: --   

email accounts not working in squirrelmail login
peopleinside
Group: Member
Post Group: Super Member
Posts: 1394
Status:

Open source, web and security passionate
Please try to change the password to your account who give this error.
You can do by accesing webmail account in Webuzo and you will find the button for change the password.

Put the password you think should work in squirellmail and after saving please try to log in again in squirellmail.

Please after that tell if you see the same error message or different.
Be sure as email username to put full email.


-----------------------
PeopleInside  :angel:

Web, security, open source passionate.
IP: --   

email accounts not working in squirrelmail login
niti201012
Group: Member
Post Group: Newbie
Posts: 6
Status:
Quote From : peopleinside November 19, 2015, 12:34 pm
Please try to change the password to your account who give this error.
You can do by accesing webmail account in Webuzo and you will find the button for change the password.

Put the password you think should work in squirellmail and after saving please try to log in again in squirellmail.

Please after that tell if you see the same error message or different.
Be sure as email username to put full email.


i just created a new email and as it is i entered in squirrelmail it says unknown user or password incorrect

email accounts that i manually added to dovecot are working properly.... the email accounts added through webuzo end user panel not working...

ive tested with squirrelmail, roundcube, webmail lite... these clients working with email accounts that i manually added to dovecot... but now with emails of webuzo enduser panel
IP: --   

email accounts not working in squirrelmail login
peopleinside
Group: Member
Post Group: Super Member
Posts: 1394
Status:

Open source, web and security passionate
Maybe is because you installed exim and dovecot from SSH and not from webuzo. You should receive support from webuzo team.

I think can be not good instal manually from SSH exim and Dovecot when Webuzo is running, you should use the panel.


-----------------------
PeopleInside  :angel:

Web, security, open source passionate.
IP: --   

email accounts not working in squirrelmail login
niti201012
Group: Member
Post Group: Newbie
Posts: 6
Status:
Quote From : peopleinside November 19, 2015, 12:45 pm
Maybe is because you installed exim and dovecot from SSH and not from webuzo. You should receive support from webuzo team.

I think can be not good instal manually from SSH exim and Dovecot when Webuzo is running, you should use the panel.

no marc

i installed bot exim and dovecot from webuzo.... just i tested with default config and edited config... results are same
IP: --   

email accounts not working in squirrelmail login
peopleinside
Group: Member
Post Group: Super Member
Posts: 1394
Status:

Open source, web and security passionate
AS I can see you posted SSH command to install exim so i supposed you have installed from SSH.

I can't help with this issue, seems to be something need expert to look into. You need support from Webuzo Staff.
Are you a free or Premium user?

You can consider to buy a licence (is not expensive) you can also decide if year payment or just pay a month so you will be able to ask for Premium support and open a ticket.
http://www.softaculous.com/clients?ca=webuzobuy

Sorry if I can't help you more with this issue.
Seems something of strange maybe something are changed from the origianal Webuzo configuration.

A Webuzo Team should be able to solve this.


-----------------------
PeopleInside  :angel:

Web, security, open source passionate.
IP: --   

« Previous    Next »

Threaded Mode | Print  



Jump To :


Users viewing this topic
1 guests, 0 users.


All times are GMT. The time now is April 2, 2024, 10:31 am.

  Powered By AEF 1.0.8 © 2007-2008 Electron Inc.Queries: 11  |  Page Created In:0.168