Find the answer to your Linux question:
Results 1 to 2 of 2
Running: CentOS 5.3 (RHEL) Goal: Get Dovecot working as pop3 and imap4 server Problem: Dovecot disconnects on server side because of permissions - I guess If this helps, this is ...
  1. #1
    Just Joined!
    Join Date
    Jul 2009
    Location
    Ansager, Denmark
    Posts
    26

    Permissions on some folders

    Running: CentOS 5.3 (RHEL)
    Goal: Get Dovecot working as pop3 and imap4 server
    Problem: Dovecot disconnects on server side because of permissions - I guess

    If this helps, this is a part of the Dovecot log:
    dovecot: Jul 24 22:01:51 Info: pop3-login: Login: user=<user@domain.com>, method=PLAIN, rip=::ffff:127.0.0.1, lip=::ffff:127.0.0.1, secured
    dovecot: Jul 24 22:01:51 Error: POP3(user@domain.com): file_dotlock_open() failed with file /var/mail/vhosts/domain.com/user/dovecot.index.log: Permission denied
    dovecot: Jul 24 22:01:51 Error: POP3(user@domain.com): file_dotlock_open(/var/mail/vhosts/domain.com/user/dovecot-uidlist) failed: Permission denied
    dovecot: Jul 24 22:01:51 Error: POP3(user@domain.com): Couldn't init INBOX: Can't sync mailbox: Messages keep getting expunged
    dovecot: Jul 24 22:01:51 Info: POP3(user@domain.com): Mailbox init failed top=0/0, retr=0/0, del=0/0, size=0

    Please, bear over with me, I am not a guru. Somebody who can tell me, how I change permission on the underlying directories AND files, including NEW files that will be created in one of the underlying directories of /var/mail/vhosts ? chmod 777 /var/mail/vhosts doesn't work, and how chown works - I have no clue!

    Albert

  2. #2
    Linux Guru waterhead's Avatar
    Join Date
    Jul 2004
    Location
    Franklin, Wisconsin
    Posts
    4,577
    Have you looked at the chown manual?
    Code:
    man chown
    I usually use the -R option, to make everything in the folder follow the folder permissions. I also specify the user and user group like this: user:usergroup.

    I usually create a /video folder, and then change the permissions with this command. In Fedora, use su to first gain root privileges.
    Code:
    su
    Password:
    Code:
    chown -R paul:paul /video
    In your case, it may not be advisable to change the folder permissions. You may need to add your user to a specific usergroup instead. There is a mail usergroup, maybe that is the one.
    Paul

    Please do not send Private Messages to me with requests for help. I will not reply.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...