typeset CROP=""
 typeset profile="xvidvhq"
 typeset extension=""
+typeset mailto=""
 typeset -i force_onepass_mode=0
 typeset -i eject_disk=1
 typeset -i keep_isofile=0
 found_config=0
 
 # 1) /path/to/rip_dvd/script/rip_dvd.conf.dist
-[ -e "${config}.dist" ] && found_config=1 && . ${config}.dist
+[ -e "${config}.dist" ] && found_config=1 && . "${config}.dist"
 
 # 2) /path/to/rip_dvd/script/rip_dvd.conf
-[ -e "${config}" ] && found_config=1 && . ${config}
+[ -e "${config}" ] && found_config=1 && . "${config}"
 
 # 3) /etc/rip_dvd.conf
-[ -e "/etc/rip_dvd.conf" ] && found_config=1 && . /etc/rip_dvd.conf
+[ -e "/etc/rip_dvd.conf" ] && found_config=1 && . "/etc/rip_dvd.conf"
 
 # 4) $PWD/rip_dvd.conf
-[ -e "rip_dvd.conf" ] && found_config=1 && . rip_dvd.conf
+[ -e "$PWD/rip_dvd.conf" ] && found_config=1 && . "$PWD/rip_dvd.conf"
 
 # Check to make sure we found the config file
 if [ $found_config -eq 0 ]; then