]> git.llucax.com Git - software/sercom-old.git/blobdiff - src/sc_fetch
Bugfix en prefijo del subject de los mails.
[software/sercom-old.git] / src / sc_fetch
index a1a9ef023c5201c92409bc9df191fe15499200ba..4da4a6ffc3cd44b880cbff3eec9ba8c5737287ce 100755 (executable)
@@ -1,10 +1,8 @@
 #!/usr/bin/php4
 <?php // vim: set binary noeol et sw=4 sts=4:
 
-// Si me pasan un directorio de bibliotecas, lo uso.
-if (@$argv[1]) {
-    set_include_path(get_include_path().':'.$argv[1]);
-}
+// Incluyo directorio del ejecutable como posible directorio de bibliotecas
+set_include_path(get_include_path().':'.dirname($argv[0]));
 
 require_once 'T/general.php';
 
@@ -163,7 +161,7 @@ imap_close($mbox);
 
 function enviar_respuesta($tipo, $to, $mensaje = '', $intento = null) {
     global $mconf;
-    $subject = $mconf['prefijo'] . 'Entrega ';
+    $subject = '[' . $mconf['prefijo'] . '] Entrega ';
     if ($tipo == R_OK) $estado = 'ACEPTADA';
     else               $estado = 'RECHAZADA';
     $subject .= $estado;