Lines Matching refs:helo
32 proxy_data.helo = data->helo.domain;
33 proxy_data.proto = (data->helo.old_smtp ?
44 struct cmd_helo_context *helo = cmd->context;
51 if (!helo->data->helo.old_smtp) {
99 struct cmd_helo_context *helo = cmd->context;
100 struct client *client = helo->client;
103 if (helo->data->changed)
104 cmd_helo_update_xclient(client, helo->data);
137 struct cmd_helo_context *helo = cmd->context;
138 struct client *client = helo->client;
141 if (helo->data->changed)
142 cmd_helo_update_xclient(client, helo->data);
149 struct cmd_helo_context *helo;
151 helo = p_new(cmd->pool, struct cmd_helo_context, 1);
152 helo->client = client;
153 helo->cmd = cmd;
154 helo->data = data;
155 cmd->context = helo;
161 helo->cmd_proxied = smtp_client_command_rset_submit
162 (client->proxy_conn, 0, cmd_helo_proxy_cb, helo);