Каждый раз когда юзер входит или даже просто находится на сайте залогиненным мне приходят уведомления что он модифицирова свой аккаунт.

типа вот такого:

===== Информация о пользователе: =====
Михаил Карабанов created on 01/22/11 23:01:57 with email address 5817622@vkontakte.ru and status of Активный. The user prefers a timezone of 0, language of DEFAULT and theme of DEFAULT.

Причем user register notify я вообще отключил, хотя мож и не сработало отключение почему то.

Comments

Aurochs’s picture

Still no ideas? Pls assist.

Why i receive notifications of user profile being modified when a user logs in using vkontakte?
Есть идеи почему после удаления user register notify все равно отсылаются уведомления о редактировании профиля когда юзер просто заходит по кнопке вконтакте?
user register notify deleted!

Romka’s picture

I have one idea. Module user_register_notify has next code:

function user_register_notify_user($op, &$edit, &$account, $category = NULL) {
  switch ($op) {
    case 'insert':
      user_register_notify_setup_email($edit, $account);
      break;
    case 'update':
      if (variable_get('user_register_notify_alert', 'create') == 'update')
        user_register_notify_setup_email($edit, $account, 'update');
      break;
  }
}

If in user register notify module settings you set a variable user_register_notify_alert to value 'update', then on every call of function user_save this module will send you an e-mail.

Module VK OpenAPI calls user_save (for updating user account data from vk.com) on every user login.

I hope, problem'll be solved, if you switch value of variable user_register_notify_alert to another.