Guest User

Untitled

a guest
May 16th, 2018
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. Software error:
  2. No SASL mechanism found
  3. at C:/Program Files/Bugzilla/perl/perl/site/lib/Authen/SASL.pm line 77
  4. at C:/Program Files/Bugzilla/perl/perl/lib/Net/SMTP.pm line 143
  5.  
  6. 3.1.12. Email
  7.  
  8. This page contains all of the parameters for configuring how Bugzilla
  9. deals with the email notifications it sends. See below for a summary of
  10. important options.
  11.  
  12. ...
  13.  
  14. smtp_username
  15. Username to use for SASL authentication to the SMTP server.
  16. Leave this parameter empty if your server does not require
  17. authentication.
  18.  
  19. smtp_password
  20. Password to use for SASL authentication to the SMTP server. This
  21. parameter will be ignored if the "smtp_username" parameter is
  22. left empty.
  23.  
  24. 3.1.12. Email
  25.  
  26. This page contains all of the parameters for configuring how Bugzilla
  27. deals with the email notifications it sends. See below for a summary of
  28. important options.
  29.  
  30. ...
  31.  
  32. smtp_username
  33. Username to use for SASL authentication to the SMTP server.
  34. Leave this parameter empty if your server does not require
  35. authentication.
  36.  
  37. smtp_password
  38. Password to use for SASL authentication to the SMTP server. This
  39. parameter will be ignored if the "smtp_username" parameter is
  40. left empty.
  41.  
  42. if ($method eq "SMTP" | | $method eq "SMTP::TLS") {
  43. ($smtp_server,$smtp_port) = split /:/,Bugzilla->params->{"smtpserver"};
  44. push @args,
  45. Host => $smtp_server,
  46. user => Bugzilla->params->{"smtp_username"},
  47. password => Bugzilla->params->{"smtp_password"},
  48. Hello => $hostname,
  49. Debug => Bugzilla->params->{'smtp_debug'};
  50. push @args, Port => $smtp_port if($smtp_port);
  51. }
Add Comment
Please, Sign In to add comment