~ubuntu-branches/ubuntu/trusty/postfix/trusty

« back to all changes in this revision

Viewing changes to src/smtpd/smtpd_sasl_glue.c

  • Committer: Package Import Robot
  • Author(s): LaMont Jones, LaMont Jones, localization folks
  • Date: 2014-02-11 07:44:30 UTC
  • mfrom: (58.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20140211074430-kwkoxdz0fbajn0fj
Tags: 2.11.0-1
[LaMont Jones]

* New upstream release: 2.11.0

[localization folks]

* l10n: Updated German translations.  Closes: #734893 (Helge Kreutzmann)

Show diffs side-by-side

added added

removed removed

Lines of Context:
202
202
    /*
203
203
     * Set up a new server context for this connection.
204
204
     */
205
 
#define SMTPD_SASL_SERVICE "smtp"
206
205
#ifdef USE_TLS
207
206
    tls_flag = state->tls_context != 0;
208
207
#else
218
217
                                            state->dest_addr : ""),
219
218
                             client_addr = ADDR_OR_EMPTY(state->addr,
220
219
                                                       CLIENT_ADDR_UNKNOWN),
221
 
                             service = SMTPD_SASL_SERVICE,
 
220
                             service = var_smtpd_sasl_service,
222
221
                           user_realm = REALM_OR_NULL(var_smtpd_sasl_realm),
223
222
                             security_options = sasl_opts_val,
224
223
                             tls_flag = tls_flag)) == 0)