]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lmtp: proxy: Renamed client_proxy_rcpt_parse_fields() to lmtp_proxy_rcpt_parse_fields().
authorStephan Bosch <stephan.bosch@dovecot.fi>
Mon, 18 Sep 2017 20:27:41 +0000 (22:27 +0200)
committerStephan Bosch <stephan.bosch@dovecot.fi>
Thu, 7 Dec 2017 23:08:15 +0000 (00:08 +0100)
src/lmtp/lmtp-proxy.c

index 6e09ad359e0f04d176d52320ed2853911873deff..a995958abe4294ad08b693b6b5a79bf0aef3c1e4 100644 (file)
@@ -305,8 +305,8 @@ lmtp_proxy_write_reply(string_t *reply, const struct smtp_reply *proxy_reply)
  */
 
 static bool
-client_proxy_rcpt_parse_fields(struct lmtp_proxy_rcpt_settings *set,
-                              const char *const *args, const char **address)
+lmtp_proxy_rcpt_parse_fields(struct lmtp_proxy_rcpt_settings *set,
+                            const char *const *args, const char **address)
 {
        const char *p, *key, *value;
        bool proxying = FALSE, port_set = FALSE;
@@ -477,7 +477,7 @@ bool client_proxy_rcpt(struct client *client,
        set.timeout_msecs = LMTP_PROXY_DEFAULT_TIMEOUT_MSECS;
        set.params = *params;
 
-       if (!client_proxy_rcpt_parse_fields(&set, fields, &username)) {
+       if (!lmtp_proxy_rcpt_parse_fields(&set, fields, &username)) {
                /* not proxying this user */
                pool_unref(&pool);
                return FALSE;