X-Git-Url: https://git.llucax.com/software/sercom-old.git/blobdiff_plain/5174fa9bd71e4f671d9788707e106296638a3c63..8c3359a287dd86c03b874aef2bbfcf2e95c4ad4b:/src/sc_fetch diff --git a/src/sc_fetch b/src/sc_fetch index 3b569f7..5d3c16a 100755 --- a/src/sc_fetch +++ b/src/sc_fetch @@ -1,6 +1,9 @@ #!/usr/bin/php4 120) { // 2 horas sin poder conectarse logs('Hace 2 horas que no se puede conectar al servidor ('.imap_last_error().')', ERROR); $mbox_errcount = 0; @@ -158,7 +161,7 @@ imap_close($mbox); function enviar_respuesta($tipo, $to, $mensaje = '', $intento = null) { global $mconf; - $subject = '[' . strtoupper($NAME) . '] Entrega '; + $subject = $mconf['prefijo'] . 'Entrega '; if ($tipo == R_OK) $estado = 'ACEPTADA'; else $estado = 'RECHAZADA'; $subject .= $estado; @@ -169,6 +172,7 @@ function enviar_respuesta($tipo, $to, $mensaje = '', $intento = null) { $headers = <<encoding}]", DEBUG); $body = imap_fetchbody($mbox, $msgid, $id + 1); - $path = "$dir/" . $intento->path(); + $path = "$dir/" . $intento->path('intentos'); if (!mkdir_p($path)) return 'No se pudo crear el directorio'; if (!file_put_contents("$path/$fname", decode_body($body, $part->encoding))) return "Error al guardar el archivo $fname"; }