ispCP - Board - Support
Webmail im ispCP! Problem! - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega International Area (/forum-22.html)
+--- Forum: German Corner (/forum-26.html)
+--- Thread: Webmail im ispCP! Problem! (/thread-2335.html)

Pages: 1 2 3 4 5


Webmail im ispCP! Problem! - shoxxweb - 02-07-2008 06:38 AM

Guten Abend,

Noch ein kleines Problemchen,
Folgendes:

Wenn ich auf die Webmail Seite gehe, kann ich mich einloggen, das heisst ich will mich einloggen, und es kommt diese Meldung, nach dem ich meine Daten eingegeben habe:

Bad request: The IMAP server is reporting that plain text logins are disabled. Using CRAM-MD5 or DIGEST-MD5 authentication instead may work. Also, the use of TLS may allow SquirrelMail to login. Please contact your system administrator and report this error.

An was kann das liegen? Was muss ich tun, um es zu aktivieren?

Gruß

Shoxx


RE: Webmail im ispCP! Problem! - BeNe - 02-07-2008 06:47 AM

Das wird an SASL liegen.
Was sagt
Code:
postconf -n
?
Kannst mal versuchen in der /etc/postfix/main.cf bei
Code:
smtpd_sasl_security_options  = noanonymous, noplaintext
das "noplaintext" zu entfernen und postfix neustarten.

Aber dass das bei Webmailer auftritt Rolleyes

Greez BeNe


RE: Webmail im ispCP! Problem! - shoxxweb - 02-07-2008 06:53 AM

Immer noch das gleiche Problem,

Habs gemacht wie du gesagt hast, ?


RE: Webmail im ispCP! Problem! - BeNe - 02-07-2008 06:57 AM

Code:
postconf -n

Greez BeNe


RE: Webmail im ispCP! Problem! - shoxxweb - 02-07-2008 06:58 AM

Sorry nicht gesehen:

root:~# postconf -n
alias_database = hash:/etc/aliases
append_at_myorigin = yes
append_dot_mydomain = no
biff = no
broken_sasl_auth_clients = yes
command_directory = /usr/sbin
config_directory = /etc/postfix
daemon_directory = /usr/lib/postfix
inet_interfaces = all
local_destination_recipient_limit = 1
local_recipient_maps = unix:passwd.byname $alias_database
local_transport = local
mail_spool_directory = /var/mail
mailbox_command = procmail -a "$EXTENSION"
mailbox_size_limit = 0
mydestination = $myhostname, $mydomain
mydomain = hostpanel.ch.local
myhostname = hostpanel.ch
mynetworks_style = host
myorigin = $myhostname
setgid_group = postdrop
smtpd_banner = $myhostname ESMTP ispCP 1.0 Priamos Managed 1.0.0 RC3 OMEGA
smtpd_data_restrictions = reject_multi_recipient_bounce, reject_unauth_pipelining
smtpd_helo_required = yes
smtpd_helo_restrictions = permit_mynetworks, permit_sasl_authenticated, reject_invalid_helo_hostname, reject_non_fqdn_helo_hostname
smtpd_recipient_restrictions = reject_non_fqdn_recipient, reject_unknown_recipient_domain, permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination, reject_unlisted_recipient, check_policy_service inet:127.0.0.1:12525, check_policy_service inet:127.0.0.1:60000, permit
smtpd_sasl_auth_enable = yes
smtpd_sasl_local_domain =
smtpd_sasl_security_options = noanonymous
smtpd_sender_restrictions = reject_non_fqdn_sender, reject_unknown_sender_domain, permit_mynetworks, permit_sasl_authenticated
transport_maps = hash:/etc/postfix/ispcp/transport
virtual_alias_maps = hash:/etc/postfix/ispcp/aliases
virtual_gid_maps = static:8
virtual_mailbox_base = /var/mail/virtual
virtual_mailbox_domains = hash:/etc/postfix/ispcp/domains
virtual_mailbox_limit = 0
virtual_mailbox_maps = hash:/etc/postfix/ispcp/mailboxes
virtual_minimum_uid = 1000
virtual_transport = virtual
virtual_uid_maps = static:1000
root:~#


RE: Webmail im ispCP! Problem! - shoxxweb - 02-07-2008 07:40 AM

Keiner eine Antwort?


RE: Webmail im ispCP! Problem! - Rene - 02-07-2008 07:42 AM

sicher mal deine config und versuch mal unter den Punkt SASL parameters nur das stehen zu lassen:

Code:
#
# SASL paramters;
#

smtpd_sasl_auth_enable       = yes
smtpd_sasl2_auth_enable      = yes
smtpd_sasl_security_options  = noanonymous
smtpd_sasl_local_domain      =
broken_sasl_auth_clients     = yes
smtpd_sender_restrictions    = permit_mynetworks,
                               permit_sasl_authenticated,
                               reject_unauth_destination
smtpd_recipient_restrictions = permit_mynetworks,
                               permit_sasl_authenticated,
                               reject_unauth_destination
                               check_policy_service inet:127.0.0.1:60000

danach neustart nicht vergessen Wink


RE: Webmail im ispCP! Problem! - joximu - 02-07-2008 07:46 AM

ich hab eher das Gefühl, es liegt am IMAP - einloggen am Webmail prüft IMHO via IMAP die Verbindung zum Server.
Schau mal eher beim IMAP Server nach (courier, nach standardanleitung hier).

/J


RE: Webmail im ispCP! Problem! - Rene - 02-07-2008 07:55 AM

ohje, ja imap, steht ja auch da Big Grin

ja dann in der imap config

Code:
/etc/courier/imapd

Code:
# If you have properly configured Courier to use CRAM-MD5 or CRAM-SHA1
# authentication (see INSTALL), set IMAP_CAPABILITY as follows:
#
# IMAP_CAPABILITY="IMAP4rev1 CHILDREN NAMESPACE THREAD=ORDEREDSUBJECT THREAD=REFERENCES SORT QUOTA AUTH=CRAM-MD5 AUTH=CRAM-SHA1 IDLE"
#

IMAP_CAPABILITY="IMAP4rev1 CHILDREN NAMESPACE THREAD=ORDEREDSUBJECT THREAD=REFERENCES SORT QUOTA IDLE AUTH=LOGIN"

##NAME: IMAP_CAPABILITY_ORIG:0
#
# For use by webadmin

IMAP_CAPABILITY_ORIG="IMAP4rev1 CHILDREN NAMESPACE THREAD=ORDEREDSUBJECT THREAD=REFERENCES SORT AUTH=CRAM-MD5 AUTH=CRAM-SHA1 IDLE AUTH=LOGIN"

der abschnitt wäre interessant, wenn ich nicht voll daneben liege Wink

klappt es denn bei einem clien (outlook/thunderbird)?


RE: Webmail im ispCP! Problem! - joximu - 02-07-2008 08:02 AM

http://www.isp-control.net/ispcp/browser/trunk/configs/courier/imapd#L103

ich kann mich nicht erinnern, dass es mit IMAP-Clients hier schon viele Probleme gegeben hat - und ich bin schon ne Weile hier dabei...

Gruss
J