Download | Plain Text | Line Numbers


#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
 
int main()
{
  char *user = getenv("SMTPAUTHUSER");
 
  if (user != NULL && strlen(user) > 0)
    puts("SQMAILQUEUE=bin/qmail-queue");
  return 0;
}