Erro 250 ou 251 ao tentar enviar e-mails

Olá pessoal.
Estou implantando o OCS na instituição e me deparei com um problema ao enviar e-mails. Eu fiz as configurações dentro do config.inc.php mas ele não envia. Sempre retorna o erro: SMTPMailer: Did not receive expected 250 or 251

O meu arquivo config.inc.php está assim:

;;;;;;;;;;;;;;;;;;
; Email Settings ;
;;;;;;;;;;;;;;;;;;

[email]

; Use SMTP for sending mail instead of mail()
smtp = On

; SMTP server settings
smtp_server = “meuservido.de.emails.edu.br”
smtp_port = 587

; Enable SMTP authentication
; Supported mechanisms: PLAIN, LOGIN, CRAM-MD5, and DIGEST-MD5
smtp_auth = tls //já tentei true tbm pq LOGIN ou PLAIN não autenticam

smtp_username = “meuemail@meuservido.de.emails.edu.br”
smtp_password = “minhasenha”

; Allow envelope sender to be specified
; (may not be possible with some server configurations)
allow_envelope_sender = On

; Enable attachments in the various “Send Email” pages.
; (Disabling here will not disable attachments on features that
; require them, e.g. attachment-based reviews)
enable_attachments = On

; Amount of time required between attempts to send non-editorial emails
; in seconds. This can be used to help prevent email relaying via OCS.
;time_between_emails = 3600
time_between_emails = 36

; Maximum number of recipients that can be included in a single email
; (either as To:, Cc:, or Bcc: addresses) for a non-priveleged user
max_recipients = 10

; If enabled, email addresses must be validated before login is possible.
require_validation = On

; Maximum number of days before an unvalidated account expires and is deleted
validation_timeout = 14

Consegui resolver o problema…
1 - apt-get install libsasl2-modules postfix mailutils
2 - Selecione o internet site
3 - Entre com o nome do domínio do servidor, no meu caso: ocs.jcr.ifsp.edu.br
4 - Abra o arquivo de config do postfix (/etc/postfix/main.cf) e, em myhostname coloque o seu domínio, no meu caso: seu.dominio.edu.br
5 - Crie um arquivo em /etc/postfix/sasl/ chamado sasl_passwd, mas pode ser outro nome. Nele coloque em apenas uma linha: SEU.SERVIDOR.DE.EMAIL:587 usuario@SEU.SERVIDOR.DE.EMAIL:SUASENHA (dá pra substituir pelo gmail)
6 - Salve o arquivo e no terminal rode o comando: postmap /etc/postfix/sasl/sasl_passwd (substitua o sasl_passwd pelo nome que você deu)
7 - Aplique as seguintes tratativas de segurança:
sudo chown root:root /etc/postfix/sasl/sasl_passwd /etc/postfix/sasl/sasl_passwd.db
sudo chmod 0600 /etc/postfix/sasl/sasl_passwd /etc/postfix/sasl/sasl_passwd.db
8 - Abra o arquivo de config do postfix (/etc/postfix/main.cf) para configurar o relay.
8.1 - relayhost = SEU.SERVIDOR.DE.EMAIL:587
8.2 - No final do arquivo coloque:
smtp_sasl_auth_enable = yes
smtp_sasl_security_options = noanonymous
smtp_sasl_password_maps = hash:/etc/postfix/sasl/sasl_passwd
smtp_use_tls = yes
smtp_tls_CAfile = /etc/ssl/certs/ca-certificates.crt

9 - Salve o arquivo e execute no restart do postfix no prompt (service postfix restart pq o meu server é debian)