Skip to Content.
Sympa Menu

sm-sorcery-bugs - [SM-Sorcery-Bugs] [Bug 4619] New: cast won't send any mail

sm-sorcery-bugs AT lists.ibiblio.org

Subject: Bugs for Sorcery are reported here

List archive

Chronological Thread  
  • From: bugzilla-daemon AT metalab.unc.edu
  • To: sm-sorcery-bugs AT lists.ibiblio.org
  • Subject: [SM-Sorcery-Bugs] [Bug 4619] New: cast won't send any mail
  • Date: Wed, 5 Nov 2003 05:12:25 -0500

http://bugs.sourcemage.org/show_bug.cgi?id=4619

Summary: cast won't send any mail
Product: Sorcery
Version: Devel
Platform: Other
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: subroutines
AssignedTo: sm-sorcery-bugs AT lists.ibiblio.org
ReportedBy: redlemon AT knoware.nl


I traced it down to libsorcery: wrong order of arguments to mail:

mail -s<subject> recepient -a<attachement>

in stead of

mail -s<subject> -a<attachement> recepient


<patch>
--- /var/lib/sorcery/modules/libsorcery 2003-09-28 20:00:05.000000000 +0200
+++ libsorcery 2003-11-05 17:03:39.000000000 +0100
@@ -268,7 +268,7 @@
debug "libsorcery" "Mailing report ($2) for $SPELL to $SORCERER"
date -u |
mail -s "Sorcery Report : $HOSTNAME : $2 for $SPELL-$VERSION" \
- $SORCERER -a $1 2>/dev/null
+ -a $1 $SORCERER 2>/dev/null
fi

true
</patch>



------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



  • [SM-Sorcery-Bugs] [Bug 4619] New: cast won't send any mail, bugzilla-daemon, 11/05/2003

Archive powered by MHonArc 2.6.24.

Top of Page