diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-03-12 18:57:09 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-03-12 18:57:09 -0800 |
commit | 6ced95fb32cc22ca55d169944c8cb3f31f01dd4c (patch) | |
tree | b3b2ceaca826e46e0f25bc8897b9b64da4acdb51 | |
parent | ed89f984bd2e4f0b909dd640563ac44614f6194c (diff) | |
download | tamarind-6ced95fb32cc22ca55d169944c8cb3f31f01dd4c.tar.gz tamarind-6ced95fb32cc22ca55d169944c8cb3f31f01dd4c.tar.bz2 tamarind-6ced95fb32cc22ca55d169944c8cb3f31f01dd4c.zip |
Move sasl socket path to configuration.tamarind-1
-rw-r--r-- | auth.txr | 2 | ||||
-rw-r--r-- | config.txr | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -7,7 +7,7 @@ (defun sasl-auth (user pass) (let ((sock (open-socket af-unix sock-stream))) - (sock-connect sock (new sockaddr-un path "/var/run/saslauthd/mux")) + (sock-connect sock (new sockaddr-un path sasl-sock)) (put-binary-str user sock) (put-binary-str pass sock) (put-binary-str "" sock) @@ -1,4 +1,5 @@ @(bind debug-enable t) @(bind aliases-file "/etc/tamarind/aliases") @(bind sessions-dir "/var/run/tamarind/sessions") +@(bind sasl-sock "/var/run/saslauthd/mux") @(bind csslink "") |