Lines Matching refs:send_remote_command
77 send_remote_command(int fd, const char* fmt, ...) in send_remote_command() function
270 send_remote_command(fd, "AUTH LOGIN"); in smtp_login()
285 send_remote_command(fd, "%s", temp); in smtp_login()
298 send_remote_command(fd, "%s", temp); in smtp_login()
407 send_remote_command(fd, "EHLO %s", hostname()); in deliver_to_host()
442 send_remote_command(fd, "MAIL FROM:<%s>", it->sender); in deliver_to_host()
446 send_remote_command(fd, "RCPT TO:<%s>", it->addr); in deliver_to_host()
449 send_remote_command(fd, "DATA"); in deliver_to_host()
474 if (send_remote_command(fd, "%s", line) != (ssize_t)linelen+1) { in deliver_to_host()
481 send_remote_command(fd, "."); in deliver_to_host()
484 send_remote_command(fd, "QUIT"); in deliver_to_host()