Re: dovecot help.

2020-12-16 Thread AudioGames . net Forum — Developers room : thetechguy via Audiogames-reflector


  


Re: dovecot help.

bump.

URL: https://forum.audiogames.net/post/599427/#p599427




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: dovecot help.

2020-12-14 Thread AudioGames . net Forum — Developers room : thetechguy via Audiogames-reflector


  


Re: dovecot help.

and It didn't work. It still gives me the same error. Any ideas?

URL: https://forum.audiogames.net/post/598434/#p598434




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: dovecot help.

2020-12-14 Thread AudioGames . net Forum — Developers room : thetechguy via Audiogames-reflector


  


Re: dovecot help.

@10. ah. that one. I missed that because I thought that was commented out lol.

URL: https://forum.audiogames.net/post/598429/#p598429




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: dovecot help.

2020-12-13 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector


  


Re: dovecot help.

@9, no, you have another }:  # Postfix smtp-auth  #unix_listener /var/spool/postfix/private/auth {  #  mode = 0666  #}  # Auth process is run as this user.  #user = $default_internal_user}

URL: https://forum.audiogames.net/post/598413/#p598413




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: dovecot help.

2020-12-13 Thread AudioGames . net Forum — Developers room : thetechguy via Audiogames-reflector


  


Re: dovecot help.

No. I only have two right braces. see:    group = postfix    }}Unless my screen reader is broken, there's only two right braces.

URL: https://forum.audiogames.net/post/598302/#p598302




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: dovecot help.

2020-12-13 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector


  


Re: dovecot help.

@7, yes, but you have another right brace below those two right braces. The parser is getting confused on what your trying to do, and there's no enclosing block for that third right brace, and so its asking you to either make one or get rid of that third right brace.

URL: https://forum.audiogames.net/post/598240/#p598240




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: dovecot help.

2020-12-12 Thread AudioGames . net Forum — Developers room : thetechguy via Audiogames-reflector


  


Re: dovecot help.

@6. I have a { on line 86. So I would close it with a }. That is why there is two } at the end.

URL: https://forum.audiogames.net/post/598020/#p598020




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: dovecot help.

2020-12-12 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector


  


Re: dovecot help.

I imagine that trailing } is the cause of your problem. You have a } with no opening {. Look below line 86 -- you'll notice it.

URL: https://forum.audiogames.net/post/598004/#p598004




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: dovecot help.

2020-12-12 Thread AudioGames . net Forum — Developers room : thetechguy via Audiogames-reflector


  


Re: dovecot help.

hi. @4. here is the entire file.#default_process_limit = 100#default_client_limit = 1000# Default VSZ (virtual memory size) limit for service processes. This is mainly# intended to catch and kill processes that leak memory before they eat up# everything.#default_vsz_limit = 256M# Login user is internally used by login processes. This is the most untrusted# user in Dovecot system. It shouldn't have access to anything at all.#default_login_user = dovenull# Internal user is used by unprivileged processes. It should be separate from# login user, so that login processes can't disturb other processes.#default_internal_user = dovecotservice imap-login {  inet_listener imap {    #port = 143  }  inet_listener imaps {    #port = 993    #ssl = yes  }  # Number of connections to handle before starting a new process. Typically  # the only useful values are 0 (unlimited) or 1. 1 is more secure, but 0  # is faster.   #service_count = 1  # Number of processes to always keep waiting for more connections.  #process_min_avail = 0  # If you set service_count=0, you probably need to grow this.  #vsz_limit = $default_vsz_limit}service pop3-login {  inet_listener pop3 {    #port = 110  }  inet_listener pop3s {    #port = 995    #ssl = yes  }}service submission-login {  inet_listener submission {    #port = 587  }}service lmtp {  unix_listener lmtp {    #mode = 0666  }  # Create inet listener only if you can't use the above UNIX socket  #inet_listener lmtp {    # Avoid making LMTP visible for the entire internet    #address =    #port =   #}}service imap {  # Most of the memory goes to mmap()ing files. You may need to increase this  # limit if you have huge mailboxes.  #vsz_limit = $default_vsz_limit  # Max. number of IMAP processes (connections)  #process_limit = 1024}service pop3 {  # Max. number of POP3 processes (connections)  #process_limit = 1024}service submission {  # Max. number of SMTP Submission processes (connections)  #process_limit = 1024}service auth {  unix_listener /var/spool/postfix/private/auth {    mode = 0660    user = postfix    group = postfix    }}  # Postfix smtp-auth  #unix_listener /var/spool/postfix/private/auth {  #  mode = 0666  #}  # Auth process is run as this user.  #user = $default_internal_user}service auth-worker {  # Auth worker process is run as root by default, so that it can access  # /etc/shadow. If this isn't necessary, the user should be changed to  # $default_internal_user.  #user = root}service dict {  # If dict proxy is used, mail processes should have access to its socket.  # For example: mode=0660, group=vmail and global mail_access_groups=vmail  unix_listener dict {    #mode = 0600    #user =     #group =   }}

URL: https://forum.audiogames.net/post/597997/#p597997




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: dovecot help.

2020-12-12 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector


  


Re: dovecot help.

I don't think Dovekit is whitespace-sensitive. Could you paste that entire file here? Its easier to debug that way.

URL: https://forum.audiogames.net/post/597937/#p597937




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: dovecot help.

2020-12-12 Thread AudioGames . net Forum — Developers room : thetechguy via Audiogames-reflector


  


Re: dovecot help.

@2. Nope. that didn't work. Should there be a space before the left brace?

URL: https://forum.audiogames.net/post/597861/#p597861




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: dovecot help.

2020-12-12 Thread AudioGames . net Forum — Developers room : riku via Audiogames-reflector


  


Re: dovecot help.

Hi.@1Probably because it contains invalid space.Also, the indentation seems a bit wrong.How about this?service auth {
  unix_listener /var/spool/postfix/private/auth {
mode = 0660
user = postfix
group = postfix
  }
}

URL: https://forum.audiogames.net/post/597858/#p597858




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector