X-Git-Url: https://git.llucax.com/software/sercom-old.git/blobdiff_plain/5174fa9bd71e4f671d9788707e106296638a3c63..45bc957ce2739336223af92270b77ab8375d17c2:/src/sc_fetch diff --git a/src/sc_fetch b/src/sc_fetch index 3b569f7..528b1db 100755 --- a/src/sc_fetch +++ b/src/sc_fetch @@ -158,7 +158,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 +169,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"; }