exim -bp
ormailq
- List queueexim -bpc
- Count e-mails in queueexim -qff
- Force try to send queue, even freeze e-mails (if you use -qf, just try to send queue without freeze e-mails)exiqgrep -i -z | xargs exim -Mrm
- Remove all freeze e-mails from queue - if you use without-z
, you can remove all e-mails from queueexim -Mrm message-id
- Remove a message from queueexim -Mvh message-id
- View a message's headerexim -Mvb message-id
- View a message's bodyexim -v -M message-id
- Try to send again some message
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# info: Send email log to email | |
# options: NONE | |
# | |
#----------------------------------------------------------# | |
# Variable&Function # | |
#----------------------------------------------------------# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Pessoa { | |
private $nome; | |
private $sexo; | |
private $idade; | |
public function __construct($nome = null, $sexo = null, $idade = null){ | |
$this->nome = $nome; |
NewerOlder