libexec/dma/crypto.c
152
send_remote_command(fd, "STARTTLS");
libexec/dma/crypto.c
310
send_remote_command(fd, "AUTH CRAM-MD5");
libexec/dma/crypto.c
342
send_remote_command(fd, "%s", temp);
libexec/dma/dma.h
203
ssize_t send_remote_command(int, const char*, ...) __attribute__((__nonnull__(2), __format__ (__printf__, 2, 3)));
libexec/dma/net.c
276
send_remote_command(fd, "AUTH LOGIN");
libexec/dma/net.c
291
send_remote_command(fd, "%s", temp);
libexec/dma/net.c
304
send_remote_command(fd, "%s", temp);
libexec/dma/net.c
380
send_remote_command(fd, "EHLO %s", hostname());
libexec/dma/net.c
558
send_remote_command(fd, "MAIL FROM:<%s>", it->sender);
libexec/dma/net.c
569
send_remote_command(fd, "RCPT TO:<%s>", to_addr);
libexec/dma/net.c
574
send_remote_command(fd, "DATA");
libexec/dma/net.c
599
if (send_remote_command(fd, "%s", line) != (ssize_t)linelen+1) {
libexec/dma/net.c
606
send_remote_command(fd, ".");
libexec/dma/net.c
609
send_remote_command(fd, "QUIT");