⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mail_fax

📁 linux pritner GUI
💻
字号:
#!/bin/sh# This script is for use with efax-gtk.  It can be used automatically# to e-mail a fax to a user when a fax is received.  To use it you# must have the 'nail' (enhanced mail) program installed.  If nail# does not come with your distribution, you can get it from# http://nail.berlios.de or from# http://linux.tucows.com/preview/76786.html# Edit the user options below as necessary.########### start of user options ############ The fax will be e-mailed as a postscript file.  Specify the page# size to be used here.PAGE=a4       # ISO A4#PAGE=letter   # US letter#PAGE=legal    # US legal# This is the address to which the fax is to be sent.  If none is# specified, it will be send to $USER@localhost#MAIL_ADDR=# SHRINK reduces the size of the fax image which is e-mailed to enable# the recipient to print it out with an allowance for printer margins.# It is a percentage, so if you comment it out, or specify 100, then# the image will be sent full size.  It cannot be set to a size larger# than 100, or less than 50.SHRINK=98# if you have specified a sub-directory WORK_SUBDIR: in the efax-gtkrc# configuration file then you will need to amend the following line# accordinglyWORK_SUBDIR=""############ end of user options ############if [ -z "$SHRINK" ] ; then SHRINK=100fiif [ -z "$MAIL_ADDR" ] ; then MAIL_ADDR="$USER@localhost"fiPAGE_a4="210x297mm"PAGE_letter="216x279mm"PAGE_legal="216x356mm"case $PAGE in	a4) 	PAGE_DIM="$PAGE_a4"                H_OFFSET=$((210*(100-$SHRINK)/200))                V_OFFSET=$((297*(100-$SHRINK)/200))	;;	letter)	PAGE_DIM="$PAGE_letter"                H_OFFSET=$((216*(100-$SHRINK)/200))                V_OFFSET=$((279*(100-$SHRINK)/200))	;;	legal) 	PAGE_DIM="$PAGE_legal"                H_OFFSET=$((216*(100-$SHRINK)/200))                V_OFFSET=$((356*(100-$SHRINK)/200))	;;	*)      echo "Incorrect page size specified"	        exit 2	;;esacif [ $SHRINK -gt 100 ]; then  echo "SHRINK is too large"  exit 1elif [ $SHRINK -lt 50 ]; then  echo "SHRINK is too small"  exit 1elif [ $SHRINK -eq 100 ]; then  SIZE="1"else  SIZE="0."$SHRINKfiTEMP_FILE=$HOME/efax-gtk-$1.psDISPLACE=$H_OFFSET","$V_OFFSET"mm"FILES=$HOME/$WORK_SUBDIR/faxin/$1/$1.*MAIL_CMD="nail -s efax-gtk -a$TEMP_FILE $MAIL_ADDR"efix-0.9a -ve -r300 -ops -p$PAGE_DIM -s$SIZE -d$DISPLACE $FILES > $TEMP_FILEecho "Fax $1 received by efax-gtk attached" | $MAIL_CMDsleep 1rm $TEMP_FILE

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -