[exim-dev] [Bug 2501] fix missing parentheses in heimdal_gss…

Startseite
Nachricht löschen
Nachricht beantworten
Autor: admin
Datum:  
To: exim-dev
Betreff: [exim-dev] [Bug 2501] fix missing parentheses in heimdal_gssapi.c
https://bugs.exim.org/show_bug.cgi?id=2501

--- Comment #6 from unki@??? ---
It's strange. A config like this validates successfully (the dollar-sign is
from Vim, just to indicate the line-end):

  1 cram_md5:$
  2    driver = cram_md5$
  3    public_name = CRAM-MD5$
  4 $
  5 gssapi_auth:$
  6    driver = heimdal_gssapi$
  7    public_name = GSSAPI$



As soon as I put "gssapi_auth" in first place, it fails with "extra characters
follow driver name cram_md5":

  1 gssapi_auth:$
  2    driver = heimdal_gssapi$
  3    public_name = GSSAPI$
  4 $
  5 cram_md5:$
  6    driver = cram_md5$
  7    public_name = CRAM-MD5$


I've rewritten the whole thing into a new file - making sure there are no
non-ascii-characters or whitespaces in it.

If I use some other driver - like the plaintext - it works just fine:

  1 gssapi_auth:$
  2    driver = heimdal_gssapi$
  3    public_name = GSSAPI$
  4 $
  5 plain:$
  6   driver = plaintext$
  7   public_name = PLAIN$


Will check ./src/src/readconf.c:3759 like you've recommended.

--
You are receiving this mail because:
You are on the CC list for the bug.