Upload Users - Fieldname to disable email

Upload Users - Fieldname to disable email

- Steve Fisher の投稿
返信数: 11
Some of my students don't have emails. Does anybody know the Fieldname that I should use in my upload file to set "0" for the disable email field?
Whilst I'm here, I can't get a country to show for students even though I put "United States of America' in the "country" field? It just shows blank on the resultant student profile.
Steve Fisher への返信

Re: Upload Users - Fieldname to disable email

- Helen Foster の投稿
画像 Core developers 画像 Documentation writers 画像 Moodle HQ 画像 Particularly helpful Moodlers 画像 Plugin developers 画像 Testers 画像 Translators
Hi Steve,

The enable/disable email fieldname is emailstop, however I'm not sure whether this is available as an upload users optional fieldname. thoughtful

If all your students are from the United States of America, then the easiest option would be to set the country in the interface section of Administration >> Configuration >> Variables.
Helen Foster への返信

Re: Upload Users - Fieldname to disable email

- Bill Burgos の投稿
Hi,

At present, the only field names that can be batched uploaded are mentioned in the help file. They are:

username, password, firstname, lastname, email, institution, department, city, country, lang, auth, timezone, idnumber, icq, phone1, phone2, address, url, description, mailformat, maildisplay, htmleditor, autosubscribe, course1, course2, course3, course4, course5, group1, group2, group3, group4, group5

The emailstop field is not implemented yet in the batch upload.

One way to get around this would be to directly massage the database with a SQL command filtering on, say, the description field inserted in the batch upload. However, it would take pretty good knowledge of SQL to do this properly AND safely. Not recommended for the faint of heart wink


Bill Burgos への返信

Re: Upload Users - Fieldname to disable email

- Helen Foster の投稿
画像 Core developers 画像 Documentation writers 画像 Moodle HQ 画像 Particularly helpful Moodlers 画像 Plugin developers 画像 Testers 画像 Translators
Bill, thanks for the clarification. smile

Steve, if the majority of your students don't have email addresses then you may wish to consider disabling email by default. This may be done using phpMyAdmin - simply change the emailstop default to 0 in the table mdl-user.
Helen Foster への返信

Re: Upload Users - Fieldname to disable email

- Paul Helgerman の投稿
Helen,
Thank you for suggesting this solution!  We're looking to scale up our Moodle deployment to a large test community.  Most of our students do not have e-mail accounts (none are provided by the school district), so we needed an efficient way to prevent an avalanche of bounced e-mail notifications.  Your suggestion makes it so that we can import student IDs from CSV files, without the need to manually edit each student to disable e-mail.  Life just got better.  cool
Bill Burgos への返信

Re: Upload Users - Fieldname to disable email

- Teresa Gibbison の投稿
I have posted a similar question regarding disabling email addresses in the upload file. Ref: http://moodle.org/mod/forum/discuss.php?d=19431#245796

I have successfully modified the uploaduser.php file to include the 'emailstop' field in the $optional = array as follows:
   $optional = array("idnumber" => 1,
                          "icq" => 1,
                          "phone1" => 1,
                          "phone2" => 1,
                          "address" => 1,
                          "url" => 1,
                          "description" => 1,
                          "mailformat" => 1,
                          "maildisplay" => 1,
                          "htmleditor" => 1,
                          "autosubscribe" => 1,
                          "idnumber" => 1,
                          "icq" => 1,
                          "course1" => 1,
                          "course2" => 1,
                          "course3" => 1,
                          "course4" => 1,
                          "course5" => 1,
                          "group1" => 1,
                          "group2" => 1,
                          "group3" => 1,
                          "group4" => 1,
                          "group5" =>1,
                          "emailstop" =>1);

I then upload the students with the 'emailstop' as 1.

Good luck with this.

Teresa 笑顔

Teresa Gibbison への返信

Re: Upload Users - Fieldname to disable email

- Dave Kehoe の投稿

Teresa,

How does one find the uploaduser.php file to edit?

Thanks,

Dave

Helen Foster への返信

Re: Upload Users - Fieldname to disable email

- Luis de Vasconcelos の投稿
画像 Particularly helpful Moodlers

Sorry for reopening such an old discussion, but where is that Administration >> Configuration >> Variables option in Moodle 2?