Hi,
The wiki page contains a good information, but briefly, the file is built out of the fragments in templates-user, templates-custom, and templates, with user override custom, and custom override plain templates.
The "SME" way of adding your change is the following:
1. Store in the database which ibay should have dos file times.
/sbin/e-smith/db accounts setprop music DosFileTimes enabled
2.
Add the following lines inside the foreach loop, after the [$key] definition.
if (defined($properties{'DosFileTimes'}) && $properties{'DosFileTimes'} eq 'enabled') {
$result .= "dos filetimes = yes\n";
}
What this does is query the database for the ibay that's being built for the DosFileTimes key, and see if it's enabled. If it is, the line "dos filetimes = yes" is added to the $result var, which is used by the expand-template system to write the ibay entry.
HTH's
Alex