We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've tried to configure postfix on my removed host via SSH:
public function configEmailForwarding() { $this->taskSshExec('s', 'dev') ->port(self::PORT) ->exec('cat /etc/postfix/virtual_forwardings.pcre') ->exec('cd /var/spool/postfix/pid') ->exec('sudo rm master.pid') ->exec('sudo service postfix restart') ->run(); }
Then I've executed this action: robo.phar config:email-forwarding and I've got the following issue:
robo.phar config:email-forwarding
sudo: no tty present and no askpass program specified
So It couldn't show me request for password. Any ideas why?
The text was updated successfully, but these errors were encountered:
Out of scope for this issue queue.
Sorry, something went wrong.
No branches or pull requests
I've tried to configure postfix on my removed host via SSH:
public function configEmailForwarding()
{
$this->taskSshExec('s', 'dev')
->port(self::PORT)
->exec('cat /etc/postfix/virtual_forwardings.pcre')
->exec('cd /var/spool/postfix/pid')
->exec('sudo rm master.pid')
->exec('sudo service postfix restart')
->run();
}
Then I've executed this action:
robo.phar config:email-forwarding
and I've got the following issue:
So It couldn't show me request for password.
Any ideas why?
The text was updated successfully, but these errors were encountered: