smtpp.8 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. .TH smtpp "8" "January 2016" "3proxy 0.8" "Universal proxy server"
  2. .SH NAME
  3. .B smtpp
  4. \- SMTP proxy gateway service
  5. .SH SYNOPSIS
  6. .BR "smtpp " [ -d ]
  7. .IB \fR[ -l \fR[ \fR[ @ \fR] logfile \fR]]
  8. .IB \fR[ -p port\fR]
  9. .IB \fR[ -i internal_ip\fR]
  10. .IB \fR[ -e external_ip\fR]
  11. .IB \fR[ -h default_ip[:port]\fR]
  12. .SH DESCRIPTION
  13. .B smtpp
  14. is SMTP gateway service to allow internal users to access external SMTP
  15. servers.
  16. .SH OPTIONS
  17. .TP
  18. .B -I
  19. Inetd mode. Standalone service only.
  20. .TP
  21. .B -d
  22. Daemonise. Detach service from console and run in the background.
  23. .TP
  24. .B -t
  25. Be silenT. Do not log start/stop/accept error records.
  26. .TP
  27. .B -u
  28. Never look for username authentication.
  29. .TP
  30. .B -e
  31. External address. IP address of interface proxy should initiate connections
  32. from.
  33. By default system will deside which address to use in accordance
  34. with routing table.
  35. .TP
  36. .B -i
  37. Internal address. IP address proxy accepts connections to.
  38. By default connection to any interface is accepted. It\'s usually unsafe.
  39. .TP
  40. .B -p
  41. Port. Port proxy listens for incoming connections. Default is 25.
  42. .TP
  43. .B -h
  44. Default destination. It's used if targed address is not specified by user.
  45. .TP
  46. .B -l
  47. Log. By default logging is to stdout. If
  48. .I logfile
  49. is specified logging is to file. Under Unix, if
  50. .RI \' @ \'
  51. preceeds
  52. .IR logfile ,
  53. syslog is used for logging.
  54. .TP
  55. .B -S
  56. Increase or decrease stack size. You may want to try something like -S8192 if you experience 3proxy
  57. crashes.
  58. .SH CLIENTS
  59. You can use any MUA (Mail User Agent) with SMTP authentication support.
  60. Set client to use
  61. .I internal_ip
  62. and
  63. .IR port
  64. as a SMTP server. Address of real SMTP server must be configured as a part of
  65. SMTP username. Format for username is
  66. .IR username \fB@ server ,
  67. where
  68. .I server
  69. is address of SMTP server and
  70. .I username
  71. is user\'s login on this SMTP server. Login itself may contain \'@\' sign.
  72. Only cleartext authentication is supported, because challenge-response
  73. authentication (CRAM-MD5, SPA, etc) requires challenge from server before
  74. we know which server to connect.
  75. .SH BUGS
  76. Report all bugs to
  77. .BR 3proxy@3proxy.ru
  78. .SH SEE ALSO
  79. 3proxy(8), ftppr(8), proxy(8), socks(8), tcppm(8), udppm(8), syslogd(8),
  80. .br
  81. http://3proxy.ru/
  82. .SH AUTHORS
  83. 3proxy is designed by Vladimir 3APA3A Dubrovin
  84. .RI ( 3proxy@3proxy.ru )