Your message dated Mon, 19 Jul 2010 16:21:08 +0200
with message-id <[email protected]>
and subject line Re: Bug#207163: mozilla-browser: Mozilla doesn't attach files
sent using "-compose attachment=filename" command line args
has caused the Debian Bug report #207163,
regarding mozilla-browser: Mozilla doesn't attach files sent using "-compose
attachment=filename" command line args
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
207163: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=207163
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: mozilla-browser
Version: 2:1.4-2
Severity: normal
Tags: patch
The script /usr/bin/mozilla ignores arguments passed after the -compose
command line option. This means that files cannot be attached to a
composer window from the command line. Programs such as OpenOffice.org
need this capability to be able to send documents via email.
Here is a patch that allows /usr/bin/mozilla to use the options specified
after -compose:
*** mozilla Mon Aug 25 10:10:05 2003
--- mozilla.new Mon Aug 25 10:16:47 2003
***************
*** 173,181 ****
}
open_compose () {
if [ "${ALREADY_RUNNING}" -eq "1" ]; then
! exec $MOZ_CLIENT_PROGRAM 'xfeDoCommand(composeMessage)' \
! 2>/dev/null >/dev/null
else
exec $MOZ_PROGRAM $*
fi
--- 173,187 ----
}
open_compose () {
+ shift
if [ "${ALREADY_RUNNING}" -eq "1" ]; then
! if [ -z "$1" ]; then
! exec $MOZ_CLIENT_PROGRAM 'xfeDoCommand(composeMessage)' \
! 2>/dev/null >/dev/null
! else
! exec $MOZ_CLIENT_PROGRAM "xfeDoCommand(composeMessage,$@)" \
! 2>/dev/null >/dev/null
! fi
else
exec $MOZ_PROGRAM $*
fi
-- System Information:
Debian Release: testing/unstable
Architecture: i386
Kernel: Linux monet.dyndns.org 2.4.21-jpn1 #1 Tue Aug 5 07:49:58 EDT 2003 i686
Locale: LANG=C, LC_CTYPE=C
Versions of packages mozilla-browser depends on:
ii debconf 1.2.35 Debian configuration management sy
ii libatk1.0-0 1.2.4-1 The ATK accessibility toolkit
ii libc6 2.3.2-2 GNU C Library: Shared libraries an
ii libgcc1 1:3.3.2-0pre1 GCC support library
ii libglib2.0-0 2.2.2-1 The GLib library of C routines
ii libgtk2.0-0 2.2.1-6 The GTK+ graphical user interface
ii libnspr4 2:1.4-2 Netscape Portable Runtime Library
ii libpango1.0-0 1.2.1-3 Layout and rendering of internatio
ii libstdc++5 1:3.3.2-0pre1 The GNU Standard C++ Library v3
ii psmisc 21.3-1 Utilities that use the proc filesy
ii xlibs 4.2.1-6 X Window System client libraries
ii zlib1g 1:1.1.4-12 compression library - runtime
-- debconf information excluded
--- End Message ---
--- Begin Message ---
Version: 2.0-1
I don't know when exactly this was fixed, but it works at least since
iceape version 2.0-1
Mike
--- End Message ---