Example #1
0
def idle(capi):
	config=cs_helpers.readConfig()
	spool=cs_helpers.getOption(config,"","spool_dir")
	if (spool==None):
		capisuite.error("global option spool_dir not found.")
		return
	
	done=os.path.join(spool,"done")
	failed=os.path.join(spool,"failed")

	if (not os.access(done,os.W_OK) or not os.access(failed,os.W_OK)):
		capisuite.error("Can't read/write to the necessary spool dirs")
		return

	userlist=config.sections()
	userlist.remove('GLOBAL')

	for user in userlist: # search in all user-specified sendq's
		userdata=pwd.getpwnam(user)
		outgoing_nr=cs_helpers.getOption(config,user,"outgoing_MSN","")
                if (outgoing_nr==""):
			incoming_nrs=cs_helpers.getOption(config,user,"fax_numbers","")
			if (incoming_nrs==""):
				continue
			else:
				outgoing_nr=(incoming_nrs.split(','))[0] 

		udir=cs_helpers.getOption(config,"","fax_user_dir")
		if (udir==None):
			capisuite.error("global option fax_user_dir not found.")
			return
		udir=os.path.join(udir,user)
		sendq=os.path.join(udir,"sendq")
		if (not os.access(udir,os.F_OK)):
			os.mkdir(udir,0700)
			os.chown(udir,userdata[2],userdata[3])
		if (not os.access(sendq,os.F_OK)):
			os.mkdir(sendq,0700)
			os.chown(sendq,userdata[2],userdata[3])

		files=os.listdir(sendq)
		files=filter (lambda s: re.match("fax-.*\.txt",s),files)

		for job in files:
			job_fax="%ssff" % job[:-3]
			real_user_c=os.stat(os.path.join(sendq,job)).st_uid
			real_user_j=os.stat(os.path.join(sendq,job_fax)).st_uid
			if (real_user_j!=pwd.getpwnam(user)[2] or real_user_c!=pwd.getpwnam(user)[2]):
				capisuite.error("job %s seems to be manipulated (wrong uid)! Ignoring..." % os.path.join(sendq,job_fax))
				continue

			lockfile=open(os.path.join(sendq,"%slock" % job[:-3]),"w")
			# read directory contents
			fcntl.lockf(lockfile,fcntl.LOCK_EX) # lock so that it isn't deleted while sending

			if (not os.access(os.path.join(sendq,job),os.W_OK)): # perhaps it was cancelled?
				fcntl.lockf(lockfile,fcntl.LOCK_UN)
				lockfile.close()
				os.unlink(os.path.join(sendq,"%slock" % job[:-3]))
				continue

			control=cs_helpers.readConfig(os.path.join(sendq,job))
			# set DST value to -1 (unknown), as strptime sets it wrong for some reason
			starttime=(time.strptime(control.get("GLOBAL","starttime")))[0:8]+(-1,)
			starttime=time.mktime(starttime)
			if (starttime>time.time()):
				fcntl.lockf(lockfile,fcntl.LOCK_UN)
				lockfile.close()
				os.unlink(os.path.join(sendq,"%slock" % job[:-3]))
				continue

			tries=control.getint("GLOBAL","tries")
			dialstring=control.get("GLOBAL","dialstring")
			addressee=cs_helpers.getOption(control,"GLOBAL","addressee","")
			subject=cs_helpers.getOption(control,"GLOBAL","subject","")
			mailaddress=cs_helpers.getOption(config,user,"fax_email","")
			if (mailaddress==""):
				mailaddress=user
			fromaddress=cs_helpers.getOption(config,user,"fax_email_from","")
			if (fromaddress==""):
				fromaddress=user

			capisuite.log("job %s from %s to %s initiated" % (job_fax,user,dialstring),1)
			result,resultB3 = sendfax(capi,os.path.join(sendq,job_fax),outgoing_nr,dialstring,user,config)
			tries+=1
			capisuite.log("job %s: result was %x,%x" % (job_fax,result,resultB3),1)

			if (result in (0,0x3400,0x3480,0x3490,0x349f) and resultB3==0):
				movejob(job_fax,sendq,done,user)
				capisuite.log("job %s: finished successfully" % job_fax,1)
				mailtext="Your fax job to %s (%s) was sent successfully.\n\n" \
				  "Subject: %s\nFilename: %s\nNeeded tries: %i\n" \
				  "Last result: 0x%x/0x%x\n\nIt was moved to " \
				  "file://%s on host \"%s\"" % (addressee,dialstring, \
				  subject,job_fax,tries,result,resultB3, \
				  os.path.join(done,"%s-%s" % (user,job_fax)), \
				  os.uname()[1])
				cs_helpers.sendSimpleMail(fromaddress,mailaddress,
				  "Fax to %s (%s) sent successfully." % (addressee,dialstring),
				  mailtext)
			else:
				max_tries=int(cs_helpers.getOption(config,"","send_tries","10"))
				delays=cs_helpers.getOption(config,"","send_delays","60,60,60,300,300,3600,3600,18000,36000").split(",")
				delays=map(int,delays)
				if ((tries-1)<len(delays)):
					next_delay=delays[tries-1]
				else:
					next_delay=delays[-1]
				starttime=time.time()+next_delay
				capisuite.log("job %s: delayed for %i seconds" % (job_fax,next_delay),2)
				cs_helpers.writeDescription(os.path.join(sendq,job_fax), \
				  "dialstring=\"%s\"\nstarttime=\"%s\"\ntries=\"%i\"\n" \
				  "user=\"%s\"\naddressee=\"%s\"\nsubject=\"%s\"\n" \
				  % (dialstring,time.ctime(starttime),tries,user, \
				  addressee,subject))
				if (tries>=max_tries):
					movejob(job_fax,sendq,failed,user)
					capisuite.log("job %s: failed finally" % job_fax,1)
					mailtext="I'm sorry, but your fax job to %s (%s) " \
					  "failed finally.\n\nSubject: %s\n" \
					  "Filename: %s\nTries: %i\n" \
					  "Last result: 0x%x/0x%x\n\n" \
					  "It was moved to file://%s-%s on host %s.\n\n" \
					  % (addressee,dialstring,subject,job_fax,tries,result, \
					  resultB3,os.path.join(failed,user),job_fax,os.uname()[1]) 
					cs_helpers.sendSimpleMail(fromaddress,mailaddress,
					  "Fax to %s (%s) FAILED." % (addressee,dialstring),
					  mailtext)

			fcntl.lockf(lockfile,fcntl.LOCK_UN)
			lockfile.close()
			os.unlink("%slock" % os.path.join(sendq,job[:-3]))