Download | Plain Text | No Line Numbers


  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <unistd.h>
  4. #include <string.h>
  5.  
  6. int main()
  7. {
  8. char *user = getenv("SMTPAUTHUSER");
  9.  
  10. if (user != NULL && strlen(user) > 0)
  11. puts("SQMAILQUEUE=bin/qmail-queue");
  12. return 0;
  13. }
  14.