File: xnsgetmail.exp

package info (click to toggle)
exmh 1%3A2.9.0-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 4,216 kB
  • sloc: tcl: 38,046; perl: 1,647; makefile: 130; sh: 101; exp: 75; csh: 9; sed: 2
file content (16 lines) | stat: -rw-r--r-- 213 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#
# expect script to see if xnsgetmail wants the user to XNS login, first.
#

set timeout 1000
log_user 0
spawn xnsgetmail -k
log_user 1
expect {
    {Enter XNS username:} {
	exit 1
    }
    eof {
    }
}
exit 0