Current time: 07-01-2024, 01:41 PM Hello There, Guest! (LoginRegister)


Thread Closed 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[ERLEDIGT]seit dovecot installation keine mails mehr
Author Message
ZooL Offline
Moderator
*****
Moderators

Posts: 3,429
Joined: Jan 2007
Reputation: 79
Post: #11
RE: [USE]seit dovecot installation keine mails mehr
das sieht doch gut aus als wenn er sich verbunden hat... oder seh ich das falsch... Big Grin
11-02-2008 08:38 PM
Visit this user's website Find all posts by this user
d.i.t.o Offline
Junior Member
*

Posts: 35
Joined: Oct 2008
Reputation: 0
Post: #12
RE: [USE]seit dovecot installation keine mails mehr
(11-02-2008 08:38 PM)ZooL Wrote:  das sieht doch gut aus als wenn er sich verbunden hat... oder seh ich das falsch... Big Grin

Das sehe ich genau so.
11-02-2008 08:39 PM
Visit this user's website Find all posts by this user
BeNe Offline
Moderator
*****
Moderators

Posts: 5,899
Joined: Jan 2007
Reputation: 68
Post: #13
RE: [USE]seit dovecot installation keine mails mehr
Ja das passt.
Überprüfe bitte nochmals deine Configs. Ist die reihenfolge innerhalb der Config auch identisch mit der im wiki ?
Sonst steht hier auch noch etwas --> http://wiki.dovecot.org/Authentication/Caching
Code:
auth_cache_negative_ttl: (v1.1+ only) If a passdb or userdb lookup didn't return any data (i.e. the user doesn't exist), it's also stored in the cache as a negative entry. This setting allows you to give negative entries a different TTL. 0 disables negative caching completely.

Greez BeNe
(This post was last modified: 11-03-2008 02:30 AM by BeNe.)
11-03-2008 02:29 AM
Visit this user's website Find all posts by this user
d.i.t.o Offline
Junior Member
*

Posts: 35
Joined: Oct 2008
Reputation: 0
Post: #14
RE: [USE]seit dovecot installation keine mails mehr
(11-03-2008 02:29 AM)BeNe Wrote:  Ja das passt.
Überprüfe bitte nochmals deine Configs. Ist die reihenfolge innerhalb der Config auch identisch mit der im wiki ?
Sry BeNe, weiss nicht was du damit meinst :-(

(11-03-2008 02:29 AM)BeNe Wrote:  Sonst steht hier auch noch etwas --> http://wiki.dovecot.org/Authentication/Caching
Code:
auth_cache_negative_ttl: (v1.1+ only) If a passdb or userdb lookup didn't return any data (i.e. the user doesn't exist), it's also stored in the cache as a negative entry. This setting allows you to give negative entries a different TTL. 0 disables negative caching completely.
Das wird nicht unterstützt:
Code:
* Restarting IMAP/POP3 mail server dovecot
Error: Error in configuration file /etc/dovecot/dovecot.conf line 60: Unknown setting: cache_negative_ttl
Fatal: Invalid configuration in /etc/dovecot/dovecot.conf                                     [fail]

Ich nehme an, dass es daran liegt:
Code:
dovecot: Nov 02 20:53:41 Error: auth(default): checkpassword(v.w**[AT]***engineering.tld,**.***.228.102): execv(/var/www/ispcp/engine/ispcp-dovecot-mngr) failed: No such file or directory
Die Datei ist natürlich da:
Code:
-rwxr-xr-x 1 vmail root 2596 2008-11-01 17:52 /var/www/ispcp/engine/ispcp-dovecot-mngr
11-03-2008 06:06 AM
Visit this user's website Find all posts by this user
BeNe Offline
Moderator
*****
Moderators

Posts: 5,899
Joined: Jan 2007
Reputation: 68
Post: #15
RE: [USE]seit dovecot installation keine mails mehr
Würde jetzt einfach mal auf einen falschen User in der Config tippen.
So sollte der master teil aussehen:
Code:
master {
path = /var/run/dovecot/auth-master
mode = 0660
user = vmail
group = mail
}
}
user = root
}

Greez BeNe
11-03-2008 07:38 AM
Visit this user's website Find all posts by this user
d.i.t.o Offline
Junior Member
*

Posts: 35
Joined: Oct 2008
Reputation: 0
Post: #16
RE: [USE]seit dovecot installation keine mails mehr
(11-03-2008 07:38 AM)BeNe Wrote:  Würde jetzt einfach mal auf einen falschen User in der Config tippen.
So sollte der master teil aussehen:
Code:
master {
path = /var/run/dovecot/auth-master
mode = 0660
user = vmail
group = mail
}
}
user = root
}

Greez BeNe

Hab genau das gleiche stehen.
dovecot.conf
Code:
base_dir = /var/run/dovecot/
protocols = imap imaps pop3 pop3s
ssl_disable = no
ssl_cert_file = /etc/ssl/certs/dovecot.pem
ssl_key_file = /etc/ssl/private/dovecot.pem
disable_plaintext_auth = no
info_log_path = /var/log/dovecot.info
listen=*
log_path = /var/log/dovecot.log
login_dir = /var/run/dovecot/login
syslog_facility = mail
login_greeting = Dovecot ready.
mail_location = maildir:/var/mail/virtual/%d/%n
mail_privileged_group = mail
protocol imap {
  mail_plugins = quota imap_quota
}
protocol pop3 {
  mail_plugins = quota
  pop3_uidl_format = %u-%v
}
protocol lda {
  mail_plugins = quota
  postmaster_address = ***[AT]dito.tld
  auth_socket_path = /var/run/dovecot/auth-master
}
namespace private {
  prefix = INBOX.
  inbox = yes
}
auth default {
  mechanisms = plain login
  passdb checkpassword {
    args = /var/www/ispcp/engine/ispcp-dovecot-mngr
  }
  userdb sql {
    args = /etc/dovecot/dovecot-sql-domain.conf
    args = /etc/dovecot/dovecot-sql-aliasdomain.conf
    args = /etc/dovecot/dovecot-sql-subdomain.conf
  }
  socket listen {
    client {
    path = /var/spool/postfix/private/auth
    mode = 0660
    user = postfix
    group = postfix
  }
  master {
      path = /var/run/dovecot/auth-master
      mode = 0660
      user = vmail
      group = mail
    }
  }
user = root
}
plugin {
}
auth_debug_passwords = yes
(This post was last modified: 11-03-2008 08:23 AM by d.i.t.o.)
11-03-2008 08:21 AM
Visit this user's website Find all posts by this user
BeNe Offline
Moderator
*****
Moderators

Posts: 5,899
Joined: Jan 2007
Reputation: 68
Post: #17
RE: [USE]seit dovecot installation keine mails mehr
Bei Dir in deiner Config:
Code:
auth default {
  mechanisms = plain login
  passdb checkpassword {
    args = /var/www/ispcp/engine/ispcp-dovecot-mngr
  }

Fehlt der userdb prefetch.
Siehe hier:

Code:
auth default {
mechanisms = plain login
passdb checkpassword {
args = /var/www/ispcp/engine/ispcp-dovecot-mngr
}
userdb prefetch {
}

Hier noch die rechte auf die "ispcp-dovecot-mngr"

Code:
-rwx------ 1 root root 2395 Oct  2 14:17 /var/www/ispcp/engine/ispcp-dovecot-mngr

Greez BeNe
11-03-2008 05:45 PM
Visit this user's website Find all posts by this user
d.i.t.o Offline
Junior Member
*

Posts: 35
Joined: Oct 2008
Reputation: 0
Post: #18
RE: [USE]seit dovecot installation keine mails mehr
Login geht immer noch nicht.

Hier sind die Logfiles:
dovecot.info
Code:
dovecot: 2008-11-03 10:23:08 Info: Dovecot v1.0.10 starting up
dovecot: 2008-11-03 10:23:08 Info: auth-worker(default): mysql: Connected to localhost (ispcp)
dovecot: 2008-11-03 10:23:40 Info: imap-login: Aborted login (1 authentication attempts): user=<mailaccount***[AT]dito.tld>, method=PLAIN, rip=127.0.0.1, lip=127.0.0.1, secured
dovecot: 2008-11-03 10:23:58 Info: pop3-login: Disconnected: user=<t.h*[AT]*engineering.tld>, method=PLAIN, rip=**.**.221.66, lip=**.**.221.212
dovecot: 2008-11-03 10:25:01 Info: pop3-login: Disconnected: user=<t.h*[AT]*engineering.tld>, method=PLAIN, rip=**.**.221.66, lip=**.**.221.212
dovecot: 2008-11-03 10:26:03 Info: pop3-login: Disconnected: user=<t.h*[AT]*engineering.tld>, method=PLAIN, rip=**.**.221.66, lip=**.**.221.212
deliver(mailaccount***[AT]dito.tld): 2008-11-03 10:26:45 Info: msgid=<f0d7353abca4fe736af91b2be76835e3.squirrel[AT]post.***.tld>: saved mail to INBOX
dovecot: 2008-11-03 10:27:05 Info: pop3-login: Disconnected: user=<t.h*[AT]*engineering.tld>, method=PLAIN, rip=**.**.221.66, lip=**.**.221.212

dovecot.log
Code:
dovecot: 2008-11-03 10:23:08 Warning: Killed with signal 15
dovecot: 2008-11-03 10:23:38 Error: auth(default): checkpassword(mailaccount***[AT]dito.tld,127.0.0.1): execv(/var/www/ispcp/engine/ispcp-dovecot-mngr) failed: No such file or directory
dovecot: 2008-11-03 10:23:38 Error: auth(default): checkpassword(mailaccount***[AT]dito.tld,127.0.0.1): Child 13050 exited with status 2
dovecot: 2008-11-03 10:23:56 Error: auth(default): checkpassword(t.h*[AT]*engineering.tld,**.**.221.66): execv(/var/www/ispcp/engine/ispcp-dovecot-mngr) failed: No such file or directory
dovecot: 2008-11-03 10:23:56 Error: auth(default): checkpassword(t.h*[AT]*engineering.tld,**.**.221.66): Child 13052 exited with status 2
11-03-2008 07:36 PM
Visit this user's website Find all posts by this user
BeNe Offline
Moderator
*****
Moderators

Posts: 5,899
Joined: Jan 2007
Reputation: 68
Post: #19
RE: [USE]seit dovecot installation keine mails mehr
Er findet das Script nicht:
Code:
execv(/var/www/ispcp/engine/ispcp-dovecot-mngr) failed: No such file or directory
Wenn DIESE Datei da ist wo er sucht, dann kann es nur noch an den Rechten liegen.

Greez BeNe
11-03-2008 08:36 PM
Visit this user's website Find all posts by this user
d.i.t.o Offline
Junior Member
*

Posts: 35
Joined: Oct 2008
Reputation: 0
Post: #20
RE: [USE]seit dovecot installation keine mails mehr
(11-03-2008 08:36 PM)BeNe Wrote:  Er findet das Script nicht:
Code:
execv(/var/www/ispcp/engine/ispcp-dovecot-mngr) failed: No such file or directory
Wenn DIESE Datei da ist wo er sucht, dann kann es nur noch an den Rechten liegen.

Greez BeNe

Die Datei ist da, und die Rechte stimmen auch:
Code:
-rwx------ 1 root root 2596 2008-11-01 17:52 /var/www/ispcp/engine/ispcp-dovecot-mngr
Oder sehe ich das falsch?
11-03-2008 09:22 PM
Visit this user's website Find all posts by this user
Thread Closed 


Forum Jump:


User(s) browsing this thread: 3 Guest(s)