@Dave and Paul, are your programs looking at the dir to find all the available *.inc files? So updates will just automaticlly be added?
Mine is. The dir is copied to the server.
@Dave, If I am reading your code right, did you have to hard code all the cases for the config options?
Nope.
Code:
file = open("%s" % subject,"r")
text = file.readlines()
file.close()

for line in text:
    m = re.match(r"_", line)   # Looks for everything starting with "_"
    if m: print line, "<br>"
So because of the "J" chips a second pass will be needed.