Index: openacs-4/packages/dotlrn/www/admin/users-bulk-upload-2.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn/www/admin/users-bulk-upload-2.tcl,v diff -u -r1.7.2.1 -r1.7.2.2 --- openacs-4/packages/dotlrn/www/admin/users-bulk-upload-2.tcl 2 Mar 2003 22:40:19 -0000 1.7.2.1 +++ openacs-4/packages/dotlrn/www/admin/users-bulk-upload-2.tcl 6 Mar 2003 17:54:01 -0000 1.7.2.2 @@ -37,7 +37,7 @@ doc_body_append "Bulk Uploading....

" -set list_of_user_ids [list] +set list_of_user [list] set list_of_addresses_and_passwords [list] # Do the stuff @@ -48,9 +48,10 @@ # First make sure the required data is there - if { ![info exists $row(email)] || ![info exists $row(first_names)] || ![info exists $row(last_name)] } { + if { ![info exists row(email)] || ![info exists row(first_names)] || ![info exists row(last_name)] } { doc_body_append "
Datafile must include at least the email, first_names and last_name fields
" db_abort_transaction + return } # We need to insert the ACS user @@ -60,11 +61,12 @@ set user_id [cc_lookup_email_user $row(email)] if {![empty_string_p $user_id]} { doc_body_append "User $row(email) already exists... storing user_id" - lappend list_of_user_ids $user_id + lappend list_of_users $user_id } else { set user_id [ad_user_new $row(email) $row(first_names) $row(last_name) $password "" "" "" "t" "approved"] - lappend list_of_user_ids $user_id + lappend list_of_users $user_id + lappend list_of_addresses_and_passwords $row(email) $password if {![info exists row(type)]} { set row(type) student @@ -82,7 +84,7 @@ set row(id) $row(email) } - doc_body_append "Creating ser $row(email)...." + doc_body_append "Creating user $row(email)...." # Now we make them a dotLRN user switch -exact $row(access_level) { @@ -121,28 +123,29 @@ doc_body_append "

Sending email notifications to users...

" foreach {email password} $list_of_addresses_and_passwords { - set message " -You have been added as a user to [ad_system_name] at [ad_parameter SystemUrl]. + if { ![string equal $password ""] } { + set message " +You have been added as a user to [ad_system_name] at [ad_parameter -package_id [ad_acs_kernel_id] SystemURL]. Login: $row(email) Password: $password " - # Send note to new user - if [catch {ns_sendmail "$email" "$admin_email" "You have been added as a user to [ad_system_name] at [ad_parameter SystemUrl]" "$message"} errmsg] { - doc_body_append "emailing \"$email\" failed!
" - set fail_p 1 - } else { - doc_body_append "email sent to \"$email\"
" + # Send note to new user + if [catch {ns_sendmail "$email" "$admin_email" "You have been added as a user to [ad_system_name] at [ad_parameter -package_id [ad_acs_kernel_id] SystemURL]" "$message"} errmsg] { + doc_body_append "emailing \"$email\" failed!
" + set fail_p 1 + } else { + doc_body_append "email sent to \"$email\"
" + } } - } if {$fail_p} { doc_body_append "

Some of the emails failed. Those users had random passwords generated for them, however. The best way to proceed is to have these users log in and ask them to click on 'I have forgotten my password'.

" } -doc_body_append "

- - -You may now choose to

" +doc_body_append "

+ + +You may now choose to

" doc_body_append "or, return to User Management."