diff options
author | Kurt Zenker <kz@openoffice.org> | 2006-11-08 10:56:39 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2006-11-08 10:56:39 +0000 |
commit | e63e3e1d65f99fd6e4ab7917123e6adbaf5ff865 (patch) | |
tree | 271d502c75a2439258347e706999c2a421e39853 /shell | |
parent | 97755f52d105795299d9ddfab3de36599e301d10 (diff) |
INTEGRATION: CWS cloph03 (1.9.22); FILE MERGED
2006/10/13 16:05:03 cloph 1.9.22.3: RESYNC: (1.9-1.10); FILE MERGED
2006/04/22 12:57:33 cloph 1.9.22.2: Issue number: #i64151#
Submitted by: cloph
seamonkey is licenced MPL, not NPL as mozilla, adapt the grep accordingly
2006/04/12 21:29:57 cloph 1.9.22.1: Issue number: #i64151#
Submitted by: cloph
Add support for seamonkey as e-mail client (linux)
Diffstat (limited to 'shell')
-rw-r--r-- | shell/source/unix/misc/senddoc.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/source/unix/misc/senddoc.sh b/shell/source/unix/misc/senddoc.sh index a214b6a394b1..16882934f6fa 100644 --- a/shell/source/unix/misc/senddoc.sh +++ b/shell/source/unix/misc/senddoc.sh @@ -24,7 +24,7 @@ run_mozilla() { moz=$1 fi - if file "$moz" | grep "script" > /dev/null && grep "NPL" "$moz" > /dev/null; then + if file "$moz" | grep "script" > /dev/null && grep "[NM]PL" "$moz" > /dev/null; then "$moz" -remote 'ping()' 2>/dev/null >/dev/null if [ $? -eq 2 ]; then "$1" -compose "$2" & @@ -94,7 +94,7 @@ fi # autodetect mail client from executable name case `basename "$MAILER" | sed 's/-.*$//'` in - mozilla | netscape | thunderbird) + mozilla | netscape | seamonkey | thunderbird) while [ "$1" != "" ]; do case $1 in |