pentestgeek / phishing-frenzy

Ruby on Rails Phishing Framework
www.phishingfrenzy.com
GNU General Public License v3.0
794 stars 297 forks source link

Campaign test email queued for test #314

Closed JohnnyRad closed 8 years ago

JohnnyRad commented 8 years ago

I followed the demo ,and created a campaign, when i click the test button, just saying "Campaign test email queued for test", but i couldn't recieve the test mail,why?

zeknox commented 8 years ago

Sounds like your Sidekiq process is not running in production mode.

JohnnyRad commented 8 years ago

thank you @zeknox , Here is my sidekiq configuration, is that right?

root@up:/var/www/phishing-frenzy# ll ./tmp/pids total 4 -rw-r--r-- 1 www-data www-data 6 Jul 5 05:48 sidekiq.pid

root@up:/var/www/phishing-frenzy# cat config/sidekiq.yml

Sample configuration file for Sidekiq.

Options here can still be overridden by cmd line args.

sidekiq -C config.yml


:verbose: false :pidfile: ./tmp/pids/sidekiq.pid :logfile: ./log/sidekiq.log :concurrency: 25 :queues:

root@up:/var/www/phishing-frenzybundle exec sidekiq -C config/sidekiq.yml

     s
      ss
 sss  sss         ss
 s  sss s   ssss sss   ____  _     _      _    _
 s     sssss ssss     / ___|(_) __| | ___| | _(_) __ _
s         sss         \___ \| |/ _` |/ _ \ |/ / |/ _` |
s sssss  s             ___) | | (_| |  __/   <| | (_| |
ss    s  s            |____/|_|\__,_|\___|_|\_\_|\__, |
s     s s                                           |_|
      s s
     sss
     sss 

phishing frenzy campaign details phishing frenzy gmail smtp details

zeknox commented 8 years ago

Looks like you're not starting the sidekiq process in production mode. Looks to be the issue here.