Lines Matching refs:send_remote_command
78 send_remote_command(int fd, const char* fmt, ...) in send_remote_command() function
289 send_remote_command(fd, "AUTH LOGIN"); in smtp_login()
304 send_remote_command(fd, "%s", temp); in smtp_login()
317 send_remote_command(fd, "%s", temp); in smtp_login()
393 send_remote_command(fd, "EHLO %s", hostname()); in perform_server_greeting()
571 send_remote_command(fd, "MAIL FROM:<%s>", it->sender); in deliver_to_host()
582 send_remote_command(fd, "RCPT TO:<%s>", to_addr); in deliver_to_host()
587 send_remote_command(fd, "DATA"); in deliver_to_host()
612 if (send_remote_command(fd, "%s", line) != (ssize_t)linelen+1) { in deliver_to_host()
619 send_remote_command(fd, "."); in deliver_to_host()
622 send_remote_command(fd, "QUIT"); in deliver_to_host()