Re: [PLUG] Dovecot Problem

2021-11-01 Thread Paul Heinlein

On Mon, 1 Nov 2021, Galen Seitz wrote:


On 10/31/21 16:04, Randy Bush wrote:
Here is the relevant part of the 10-director.conf file (Line 30 is 
"service

director {)

# To enable director service, uncomment the modes and assign a port.
service director {
   unix_listener login/director {
 #mode = 0666
   }
   fifo_listener login/proxy-notify {
 #mode = 0666
   }
   unix_listener director-userdb {
 #mode = 0600
   }
   inet_listener {
 #port =
   }
}


likely a missing closing brace in teh stanza *above* the service director



Agreed.  If you didn't touch the 10-director.conf file (and it looks like you 
didn't, as what you posted matches mine), then the problem is likely to be in 
10-auth.conf or dovecot.conf itself.


I think the *.conf files in /etc/dovecot/conf.d are parsed 
alphabetically. Any *.conf file may include other files (typically, 
*.ext, but that's a convention not a necessity).


So you'll need to parse from dovecot.conf downward through that file 
progression.


--
Paul Heinlein
heinl...@madboa.com
45.38° N, 122.59° W

Re: [PLUG] Dovecot Problem

2021-11-01 Thread Galen Seitz

On 10/31/21 16:04, Randy Bush wrote:

Here is the relevant part of the 10-director.conf file (Line 30 is "service
director {)

# To enable director service, uncomment the modes and assign a port.
service director {
   unix_listener login/director {
 #mode = 0666
   }
   fifo_listener login/proxy-notify {
 #mode = 0666
   }
   unix_listener director-userdb {
 #mode = 0600
   }
   inet_listener {
 #port =
   }
}


likely a missing closing brace in teh stanza *above* the service director



Agreed.  If you didn't touch the 10-director.conf file (and it looks 
like you didn't, as what you posted matches mine), then the problem is 
likely to be in 10-auth.conf or dovecot.conf itself.


galen
--
Galen Seitz
gal...@seitzassoc.com


Re: [PLUG] Dovecot Problem

2021-10-31 Thread Jason Barnett
I too know nothing about dovecot, so this is just a WAG.
Do you have userdb configured in your dovecot.conf file?

Jason

- Sent from my pocket computing telecommunications device.  All typos and
poor communications will be blamed on the autocarrot function of said
device.

On Sun, Oct 31, 2021, 5:02 PM Randy Bush  wrote:

> beats me
>


Re: [PLUG] Dovecot Problem

2021-10-31 Thread Randy Bush
beats me


Re: [PLUG] Dovecot Problem

2021-10-31 Thread Randy Bush
> Here is the relevant part of the 10-director.conf file (Line 30 is "service
> director {)
> 
> # To enable director service, uncomment the modes and assign a port.
> service director {
>   unix_listener login/director {
> #mode = 0666
>   }
>   fifo_listener login/proxy-notify {
> #mode = 0666
>   }
>   unix_listener director-userdb {
> #mode = 0600
>   }
>   inet_listener {
> #port =
>   }
> }

likely a missing closing brace in teh stanza *above* the service director


[PLUG] Dovecot Problem

2021-10-31 Thread Michael Barnes
I'm setting up a mail server on a Raspberry Pi with Postfix and Dovecot.
When I try to start dovecot, I get an error:

# 2.3.4.1 (f79e8e7e4): /etc/dovecot/dovecot.conf
doveconf: Fatal: Error in configuration file
/etc/dovecot/conf.d/10-director.conf line 30: Unknown setting: userdb {
service { service

Here is the relevant part of the 10-director.conf file (Line 30 is "service
director {)

# To enable director service, uncomment the modes and assign a port.
service director {
  unix_listener login/director {
#mode = 0666
  }
  fifo_listener login/proxy-notify {
#mode = 0666
  }
  unix_listener director-userdb {
#mode = 0600
  }
  inet_listener {
#port =
  }
}

I honestly know nothing about dovecot. I'm just following a tutorial on
setting up a mail server on an RPi.

Thanks for any ideas.

Michael