# Phabricator SSH login
For Windows, download PuTTy to use SSH
`ssh` login using `root@sanctuary.eco`
Enter password
### Resending email address verification emails to users
```
cd /var/www/tasks/web/phabricator/bin
./mail help
# Find all email verification emails
./mail list-outbound --limit 1200 | grep "Email Verification"
# Read the email to find the one with the right user, then resend the email
./mail show-outbound --id 810
./mail resend --id 810
```
### Debugging daemons
http://tasks.sanctuary.eco/daemon/
```
cd /var/www/tasks/web/phabricator/bin
./phd stop
./phd start
./phd status
nano /var/tmp/phd/log/daemons.log
```
If the mailer daemon is giving authentication issues, might need to [[ https://secure.phabricator.com/book/phabricator/article/configuring_outbound_email/ | reconfigure outbound email ]] and then restart phabricator daemons.