Download | Plain Text | No Line Numbers


  1. /*
  2.  *
  3.  * Tomislav Randjic 20060926
  4.  *
  5.  */
  6. #include <stdio.h>
  7. #include <stdlib.h>
  8. #include <string.h>
  9. #include <unistd.h>
  10.  
  11. int main()
  12. {
  13. char *user = getenv("SMTPAUTHUSER");
  14.  
  15. if (user != NULL && strlen(user) > 0)
  16. puts("N");
  17. return 0;
  18. }
  19.