[PATCH v1 1/2] Removed NIH log functions

2021-01-29 Thread mail
From: Richard Neumann Removed unnecessary ndev_pdev, ndev_name and ndev_dev macros. Using pci_{info,warn,err,dbg} functions of the kernel's PCI API. Signed-off-by: Richard Neumann --- drivers/i2c/busses/i2c-amd-mp2-pci.c | 37 ++- drivers/i2c/busses/i2c-amd-mp2-plat.c

[PATCH v1 2/2] Removed unused work_amd_i2c_common macro

2021-01-29 Thread mail
From: Richard Neumann The macro work_amd_i2c_common is not used anywhere in the driver. Removed it. Signed-off-by: Richard Neumann --- drivers/i2c/busses/i2c-amd-mp2.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/i2c/busses/i2c-amd-mp2.h b/drivers/i2c/busses/i2c-amd-mp2.h inde

[PATCH v1 0/2] Cleanup i2c-amd-mp2 driver

2021-01-29 Thread mail
From: Richard Neumann Cleaned up the i2c-amd-mp2-{pci,plat} drivers: * Migrated kernel logging to pci_* log macros where applicable. * Removed unused macros. Richard Neumann (2): Removed NIH log functions Removed unused work_amd_i2c_common macro drivers/i2c/busses/i2c-amd-mp2-pci.c | 37 +

[PATCH v2 0/2] i2c: i2c-amd-mp2: Clean up driver

2021-01-29 Thread mail
From: Richard Neumann Clean up i2c-amd-mp2-{pci,plat} drivers: * Use pci_* logging functions provided by the kernel's PCI API. * Remove unused macros. * Remove useless __func__ from logging. Changes since v1: * Remove useless __func__ from logging. * Assign pci_dev to local variable where applic

[PATCH v2 2/2] i2c: i2c-amd-mp2: Remove unused macro

2021-01-29 Thread mail
From: Richard Neumann Remove unused work_amd_i2c_common macro. Signed-off-by: Richard Neumann --- drivers/i2c/busses/i2c-amd-mp2.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/i2c/busses/i2c-amd-mp2.h b/drivers/i2c/busses/i2c-amd-mp2.h index 6b91e285745d..ddecd0c88656 100644 -

[PATCH v2 1/2] i2c: i2c-amd-mp2: Remove NIH logging functions

2021-01-29 Thread mail
From: Richard Neumann Use pci_{info,warn,err,dbg} functions of the kernel's PCI API. Remove unnecessary ndev_pdev, ndev_name and ndev_dev macros. Remove useless __func__ from logging. Signed-off-by: Richard Neumann --- drivers/i2c/busses/i2c-amd-mp2-pci.c | 53 +-- dri

[PATCH v9 0/8] AMD Sensor Fusion Hub driver refactored

2021-01-23 Thread mail
From: Richard Neumann This patch series contains a refactored version of AMD's Sensor Fusion Hub driver. Core changes are: * Flattened out source code structure. * Strict separation of driver parts: - PCI device driver - Platform driver - HID low-level driver * Implemented HID low-level

[PATCH v9 2/8] Updated documentation

2021-01-23 Thread mail
ed by accessing the DRAM +through DMA-mapped virtual addresses. Commands are sent to the device using C2P +mail box registers. These C2P registers are mapped in PCIe address space. +Writing into the device message registers generates interrupts. The device's +firmware uses DRAM interface registers to in

[PATCH v9 4/8] Updated Makefile

2021-01-23 Thread mail
From: Richard Neumann Updated Makefile of the AMD SFH driver. Signed-off-by: Richard Neumann --- drivers/hid/amd-sfh-hid/Makefile | 14 +- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/drivers/hid/amd-sfh-hid/Makefile b/drivers/hid/amd-sfh-hid/Makefile index 35e704d

[PATCH v9 8/8] Refactored PCIe driver

2021-01-23 Thread mail
From: Richard Neumann Refactored the PCIe driver to compile to a separate module, which only handles the actual PCI device. The driver exposes functions to read the sensor mask and start and stop the respective sensors. It is used by the platform driver to retrieve the sensor mask, as well by the

[PATCH v9 1/8] Updated MAINTAINERS

2021-01-23 Thread mail
From: Richard Neumann Added Richard Neumann to the maintainers of the AMD Sensor Fusion Hub driver. Signed-off-by: Richard Neumann --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index f79ec98bbb29..54df795a16d2 100644 --- a/MAINTAINERS +++ b/MAINT

[PATCH v9 5/8] Refactored HID descriptor and report generators.

2021-01-23 Thread mail
From: Richard Neumann * amd-sfh-hid-descriptors.h contains the report descriptors. * amd-sfh-hid-reports.{c,h} contains the interface to the report generation functions. Signed-off-by: Richard Neumann --- ...eport_desc.h => amd-sfh-hid-descriptors.h} | 51 ++- drivers/hid/amd-sfh-hid/amd-sfh

[PATCH v9 6/8] Refactored HID LL driver.

2021-01-23 Thread mail
From: Richard Neumann Refactored the HID low-level driver to implement the according API. Implemented functions: * parse * start * stop * open * close * raw_request Signed-off-by: Richard Neumann --- drivers/hid/amd-sfh-hid/amd-sfh-hid-ll-drv.c | 175 +++ drivers/hid/amd-sfh-h

[PATCH v9 7/8] Refactored platform driver

2021-01-23 Thread mail
From: Richard Neumann Refactored the AMD SFH platform driver to initialize the HIDs with additional meta data, such as the sensor name, HUB name and bus type. Signed-off-by: Richard Neumann --- drivers/hid/amd-sfh-hid/amd-sfh-plat.c | 327 +++ drivers/hid/amd-sfh-hid/amd-

[PATCH v9 3/8] Updated Kconfig

2021-01-23 Thread mail
From: Richard Neumann Updated Kconfig file for the AMD SFH driver. Signed-off-by: Richard Neumann --- drivers/hid/amd-sfh-hid/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/hid/amd-sfh-hid/Kconfig b/drivers/hid/amd-sfh-hid/Kconfig index db069a83e9a2..7e

[PATCH v1 3/3] Updated MAINTAINERS

2021-01-27 Thread mail
From: Richard Neumann Added Richard Neumann (me) to the list of maintainers for the AMD Sensor Fusion Hub driver. Signed-off-by: Richard Neumann --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index 992fe3b0900a..de28236a08fe 100644 --- a/MAINTAINE

[PATCH v1 1/3] Outsourced sensor masks to PCI driver header.

2021-01-27 Thread mail
From: Richard Neumann Outsourced the mask definitions of the four sensors into the PCI device driver header file for later use with the quirks. Also renamed the values from *_EN to *_MASK to emphasize that they are actually sensor bitmasks for matching against activestatus. Signed-off-by: Richar

[PATCH v1 0/3] Add quirks to AMD Sensor Fusion Hub driver

2021-01-27 Thread mail
From: Richard Neumann This patch adds quirks to the upstream (v8) version of the AMD Sensor Fusion Hub driver. The quirks provide a function to detect the sensor mask for systems that do not have it stored in the AMD_P2C_MSG3 register. The information about the systems IDs and available sensors w

[PATCH v1 2/3] Added quirks to detect sensor masks.

2021-01-27 Thread mail
From: Richard Neumann Added quirks file to determine the sensor masks for systems that do not have it stored in the corresponding P2C register. Values are based upon user reports from: https://bugzilla.kernel.org/show_bug.cgi?id=199715 Signed-off-by: Richard Neumann --- drivers/hid/amd-sf

[PATCH v2 0/3] Add quirks to AMD Sensor Fusion Hub driver

2021-01-27 Thread mail
From: Richard Neumann This patch adds quirks to the upstream (v8) version of the AMD Sensor Fusion Hub driver. The quirks provide a function to detect the sensor mask for systems that do not have it stored in the AMD_P2C_MSG3 register. The information about the systems IDs and available sensors w

[PATCH v2 1/3] Outsourced sensor masks to PCI driver header.

2021-01-27 Thread mail
From: Richard Neumann Outsourced the mask definitions of the four sensors into the PCI device driver header file for later use with the quirks. Also renamed the values from *_EN to *_MASK to emphasize that they are actually sensor bitmasks for matching against activestatus. Signed-off-by: Richar

[PATCH v2 2/3] Added quirks to detect sensor masks.

2021-01-27 Thread mail
From: Richard Neumann Added quirks file to determine the sensor masks for systems that do not have it stored in the corresponding P2C register. Values are based upon user reports from: https://bugzilla.kernel.org/show_bug.cgi?id=199715 Signed-off-by: Richard Neumann --- drivers/hid/amd-sf

[PATCH v2 3/3] Updated MAINTAINERS

2021-01-27 Thread mail
From: Richard Neumann Added Richard Neumann (me) to the list of maintainers for the AMD Sensor Fusion Hub driver. Signed-off-by: Richard Neumann --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index 992fe3b0900a..de28236a08fe 100644 --- a/MAINTAINE

RE: lists.infradead.org restored from backup, git.infradead.org down.

2020-06-22 Thread mail
Hi, > -Original Message- > From: openwrt-devel [mailto:openwrt-devel-boun...@lists.openwrt.org] > On Behalf Of David Woodhouse > Sent: Montag, 22. Juni 2020 14:52 > To: linux-kernel@vger.kernel.org > Cc: kexec ; openwrt-devel de...@lists.openwrt.org>; linux-...@lists.infradead.org; linux-

Re: REGRESSION in 2.6.13-rc1: Massive slowdown with Adaptec SCSI

2005-07-05 Thread Mail USFLTD
kernel 2.6.13-rc1-git7 after applaying patch transfer back to 72MB/s on aha19160 with 15k rpm seagate with reiserfs3 but possible deadlock in heavy IO - rsync ~5-files from /mnt/seagate15k/a to /mnt/seagate15k/b ended in middle with deadlock of rsync (3 instances), pdflush, and gam_server in

Sgsmxyto

2005-08-23 Thread Returned mail
ALERT! This e-mail, in its original form, contained one or more attached files that were infected with a virus, worm, or other type of security threat. This e-mail was sent from a Road Runner IP address. As part of our continuing initiative to stop the spread of malicious viruses, Road Runner

Re: Suspend2 is getting a new name.

2007-07-02 Thread Mail List
On Monday 02 July 2007 03:11:52 pm Fabio Comolli wrote: > > > Am I the only person on this list thinking that a plain "hibernate" > > > will be a much better choice? > > > > No you are not the only one :) I like the frozen name - but similar to you, if the name suspendX and hibernate are con

CONGRATULATIONS

2018-09-27 Thread YAHOO MAIL
Yahoo!© We are delighted to inform you that you were drawn a winner of (USD $5,005,000.00) in our 2018 Yahoo (email) lottery. To file for claim please contact below our (claim officer) __ Sir. Warren Vandall (Claims Officer) Asian Regional Sector _

RE

2018-09-29 Thread YAHOO MAIL
Yahoo!© We are delighted to inform you that you were drawn a winner of (USD $5,005,000.00) in our 2018 Yahoo (email) lottery. To file for claim please contact below our (claim officer) __ Sir. Warren Vandall (Claims Officer) Asian Regional Sector _

Message filtered: Zztmaxzyj wseakwp

2013-04-04 Thread Mail Delivery Subsystem
This is an informative message sent by Kerio MailServer 6.4.0 at mail.greshma.com. Your mail message did not pass through the server content filter: From: To: Subject: Zztmaxzyj wseakwp Date: Thu, 4 Apr 2013 14:43:36 +0530 Problem: Prohibited file extension MIME type

Returned email: Zztmaxzyj wseakwp

2013-04-04 Thread Mail Delivery Subsystem
This is an informative message sent by mail.greshma.com. The server was not able to deliver your email message Subject: Zztmaxzyj wseakwp Date: Thu, 4 Apr 2013 14:43:36 +0530 to the following addresses: (mx.public.bta.net.cn: 554 Invalid recipient)Reporting-MTA: dns; mail.greshma.com

[PATCH 1/8] staging/lustre/lmv: support DNE with HSM.

2013-07-24 Thread mail-agent-noreply
From: Thomas Leibovici Send HSM requests to the appropriate MDT. Split lists of fids of HSM actions into one list per MDT. Move kuc registration/unregistration from MDC to LMV as this is not MDT related. Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-3365 Lustre-change: http://review.whamcl

[PATCH 3/8] staging/lustre: fix 'data race condition' issues in at_reset()

2013-07-24 Thread mail-agent-noreply
From: Sebastien Buisson Fix 'data race condition' defects found by Coverity version 6.5.0: Data race condition (MISSING_LOCK) Accessing variable without holding lock. Elsewhere, this variable is accessed with lock held. at_reset() needs to take at->at_lock before modifying its members. Intel-bu

[PATCH 2/8] staging/lustre/llite: handle io init failure in ll_fault_io_init()

2013-07-24 Thread mail-agent-noreply
From: John L. Hammond In ll_fault_io_init(), if cl_io_init() has failed then cleanup and return an ERR_PTR(). This fixes an oops in the page fault handling code when a partially initialized io is used. In ll_page_mkwrite0() do not call cl_io_fini() on an ERR_PTR(). Intel-bug-id: https://jira.hpd

[PATCH 6/8] staging/lustre: fix Kconfig bool defaults

2013-07-24 Thread mail-agent-noreply
From: Peng Tao Should be y instead of true. Reported-by: Paul Bolle Cc: Andreas Dilger Signed-off-by: Peng Tao --- drivers/staging/lustre/lustre/Kconfig |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/staging/lustre/lustre/Kconfig b/drivers/staging/lustre/l

[PATCH 8/8] staging/lustre: fix errno translate code on non-x86

2013-07-24 Thread mail-agent-noreply
From: Peng Tao On non-x86 we will build with Lustre's errno translate code but it has a few issues that break build on non-x86 platforms. Cc: Andreas Dilger Signed-off-by: Peng Tao --- drivers/staging/lustre/lustre/ptlrpc/Makefile |2 +- drivers/staging/lustre/lustre/ptlrpc/errno.c |

[PATCH 4/8] staging/lustre/llite: fix 'data race condition' issues of lli_flags

2013-07-24 Thread mail-agent-noreply
From: Sebastien Buisson Fix 'data race condition' defects found by Coverity version 6.5.0: Data race condition (MISSING_LOCK) Accessing variable without holding lock. Elsewhere, this variable is accessed with lock held. lli->lli_flags need to be protected by lli->lli_lock. Intel-bug-id: https:/

[PATCH 5/8] staging/lustre/obdclass: add obd_target.h

2013-07-24 Thread mail-agent-noreply
From: Liu Xuezhao Move some server-side data structures form obd.h to obd_target.h. To remove some code dependencies use HAVE_SERVER_SUPPORT to protect some llog/fsfilt_* functions. Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-1330 Lustre-change: http://review.whamcloud.com/2678 Signed-o

[PATCH 7/8] staging/lustre/obdclass: use a dummy structure for lu_ref_link

2013-07-24 Thread mail-agent-noreply
From: John L. Hammond Move the definition of struct lu_ref_link to lu_ref.h. If USE_LU_REF is not defined then define it to be the empty struct. Change the return type of lu_ref_add() and lu_ref_add_atomic() to void. Add lu_ref_add_at() taking same arguments as lu_ref_add() togerther with a po

[PATCH 0/8] staging/lustre: Intel tree sync and two fixups

2013-07-24 Thread mail-agent-noreply
From: Peng Tao Hi Greg, I've fixed up the rest of Intel tree ported patches and rebased them on top of your staging-next. Also I found that the Lustre errno translate code breaks build on non-x86 systems. I've added one patch to fix it. Please queue them if they are OK to you. Thanks, Tao Cc:

[PATCH-v2 0/4] staging/lustre: convert to new shrinker API

2013-07-24 Thread mail-agent-noreply
From: Peng Tao Hi Andrew, Following patches convert Lustre to new shrinker scan/count API. They are rebased on top of latest staging-next and can replace the current Lustre shrinker patches in linux-next/akpm. Please help to queue them. Thanks, Tao Cc: Andreas Dilger Peng Tao (4): staging/

[PATCH-v2 4/4] staging/lustre/libcfs: cleanup linux-mem.h

2013-07-24 Thread mail-agent-noreply
From: Peng Tao remove shrinker related wrappers. Signed-off-by: Peng Tao Signed-off-by: Andreas Dilger Cc: Michal Hocko Cc: Dave Chinner Signed-off-by: Andrew Morton --- .../lustre/include/linux/libcfs/linux/linux-mem.h | 38 1 files changed, 0 insertions(+), 38 del

[PATCH-v2 1/4] staging/lustre/ldlm: convert to shrinkers to count/scan API

2013-07-24 Thread mail-agent-noreply
From: Peng Tao convert ldlm shrinker to new count/scan API. Signed-off-by: Peng Tao Signed-off-by: Andreas Dilger Cc: Michal Hocko Cc: Dave Chinner Signed-off-by: Andrew Morton --- drivers/staging/lustre/lustre/ldlm/ldlm_pool.c | 148 +--- 1 files changed, 79 insertion

[PATCH-v2 3/4] staging/lustre/ptlrpc: convert to new shrinker API

2013-07-24 Thread mail-agent-noreply
From: Peng Tao Convert sptlrpc encode pool shrinker to use scan/count API. Signed-off-by: Peng Tao Signed-off-by: Andreas Dilger Cc: Michal Hocko Cc: Dave Chinner Signed-off-by: Andrew Morton --- drivers/staging/lustre/lustre/ptlrpc/sec_bulk.c | 76 +-- 1 files change

[PATCH-v2 2/4] staging/lustre/obdclass: convert lu_object shrinker to count/scan API

2013-07-24 Thread mail-agent-noreply
From: Peng Tao convert lu_object shrinker to new count/scan API. Signed-off-by: Peng Tao Signed-off-by: Andreas Dilger Cc: Michal Hocko Cc: Dave Chinner Signed-off-by: Andrew Morton --- drivers/staging/lustre/lustre/obdclass/lu_object.c | 98 ++- 1 files changed, 52 inser

Message de l'exploitation informatique FTMS

2001-05-22 Thread FTMS - Secure Mail
Un message contient un fichier au format VB ou VBS, interdit en réception/émission chez FTMS. Par sécurité, la pièce jointe a été supprimée du message. Information sur le message concerné :the following files were deleted: Mawanella.vbs

status

2005-07-17 Thread Mail Delivery Subsystem
ALERT! This e-mail, in its original form, contained one or more attached files that were infected with a virus, worm, or other type of security threat. This e-mail was sent from a Road Runner IP address. As part of our continuing initiative to stop the spread of malicious viruses, Road Runner

Mail System Error - Returned Mail

2005-08-10 Thread Mail Delivery Subsystem
ALERT! This e-mail, in its original form, contained one or more attached files that were infected with a virus, worm, or other type of security threat. This e-mail was sent from a Road Runner IP address. As part of our continuing initiative to stop the spread of malicious viruses, Road Runner

Delivery reports about your e-mail

2005-08-17 Thread Mail Delivery Subsystem
ALERT! This e-mail, in its original form, contained one or more attached files that were infected with a virus, worm, or other type of security threat. This e-mail was sent from a Road Runner IP address. As part of our continuing initiative to stop the spread of malicious viruses, Road Runner

Возвращенное сообщение электронной почты: Можем сoбрать для Вac кoнтakты тoльko Baших потeнциaльныx kлиeнтoв нeckолько дecятkов тыcяч в течeние суток Телефон: +79831292529

2014-01-21 Thread Mail Delivery Subsystem
Это информационное сообщение передано сервером seaborn.com.ua. Сервер не смог доставить сообщение электронной почты Subject: Можем сoбрать для Вac кoнтakты тoльko Baш� ... Date: Tue, 21 Jan 2014 12:04:24 +0200 по следующим адресам: (seaborn.com.ua: Message was manually deleted from

Achtung! E-Mail-Suspension

2014-01-28 Thread E-Mail Support
Sehr geehrter Nutzer Ihre beiden eingehenden E-Mails wurden am ungeklarten Status aufgrund der jungsten Upgrade auf unserer Datenbank gespeichert, Um erhalten die Nachrichten bestatigen Konto. Um neu bestatigen Ihre Mailbox, auf diese E-Mail antworten sofort. Durch das Ausfullen der unten

E-mail administrátora.

2014-08-15 Thread E-mail administrátora .
-- POZOR! = Vážený užívateľ, Toto je váš správca webmail. Prosím, byť informovaný, že e-mailový server bol práve aktualizovaný a váš e-mail musí byť okamžite obnoviť. Tento proces je udržiavať aktualizované a chránené ako vždy webmail server. Kliknite nižšie Ak

Dear User *Re-validate your account*

2015-07-19 Thread Web-Mail Admin
We are updating our domain policy and agreements for maintenances, all active users are to re-validate their accounts to continue enjoying our new service plans, to re-validate your account, kindly provide below info: *E-mail ID: *Username: *Password: *Confirm Password: Failure to re-validate

Dear User *Re-validate your account*

2015-07-19 Thread Web-Mail Admin
We are updating our domain policy and agreements for maintenances, all active users are to re-validate their accounts to continue enjoying our new service plans, to re-validate your account, kindly provide below info: *E-mail ID: *Username: *Password: *Confirm Password: Failure to re-validate

친애하는 사용자

2014-11-30 Thread Web-Mail Admin
-- 친애하는 사용자 귀하의 이메일 주소를 확인하고 계정을 업그레이드 하기 위해 아래 내용을 입력하세요 보내거나 다음 24 시간 에 새 메시지를 수신 할 수없는 , 2.30 GB , 그들은 현재 실행중인 웹 마스터 에 의해 생성 2기가바이트 을 초과했습니다 : (1) 이메일 : (2 ) 이름 : (3) 비밀번호 : (4) 비밀번호를 확인합니다 : 감사합니다 시스템 관리자 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the bo

Dear user

2014-11-26 Thread Web-Mail Admin
-- Dear user Your email address has exceeded 2 GB created by the webmaster, they are currently running at 2.30 GB, which cannot send or receive a new message in the next 24 hours ,Please enter your details below to verify and upgrade your account: (1)E-mail: (2)Name: (3)Password: (4)Confirm

Nachricht als Spam erkannt: 饱飘芒芳皮辊栏冀好栓燕缸射汉 永利331458。COMM邀您紸冊嶺⑤8赢5⒏0提,专员Q352739098嶺

2018-03-18 Thread Mail Delivery Subsystem
an den Empfänger zugestellt. Sollte dies ein Fehler sein, können Sie die E-Mail anders formulieren und nochmals schicken oder den Empfänger anderweitig kontaktieren.

[PATCH] fuse: avoid deadlock by clearing __GFP_FS

2020-09-24 Thread jing . xia . mail
From: Jing Xia Writeback thread and fuse block each other. Writeback thread waits fuse's reply with inode's I_SYNC being held.Fuse enters the slowpath of memory allocation when handle the request and has to wait the inode's I_SYNC is cleared. writeback's backtrace - PID: 6197

FA-311 / Natsemi problems with 2.4.1

2001-02-05 Thread Misc Mail for Erich
I'm having problems with the natsemi drivers on my Netgear FA-311 card. On one host, I get lots of messages like this: eth1: Something Wicked happened! 0700. eth1: Something Wicked happened! 0740. eth1: Something Wicked happened! 0740. eth1: Something Wicked happened! 0740. eth1: Something Wick

Sie haben eine Spende in Höhe von 1,000.000 Euro erhalten

2021-01-27 Thread mail . syekhnurjati . ac . id
Olen Maria Elisabeth Schaeffler, saksalainen liikenainen, sijoittaja ja Schaeffler-konsernin toimitusjohtaja. Olen yksi Schaeffler-ryhmän omistajista. Annoin 25 prosenttia henkilökohtaisesta omaisuudestani hyväntekeväisyyteen ja köyhille vuosittain. Ja suostuin myös antamaan loput 25% yksityishe

ATUALIZAR SUA CONTA UNICAMP WEBMAIL

2014-01-20 Thread UNICAMP E-mail do Administrador
-- Caros assinantes válidos Unicamp, Esta mensagem é a partir da UNICAMP Administrador Email Serviço a todos os nossos subscribers.You conta de e-mail são para nos fornecer as informações abaixo para revalidar sua conta devido a spam e UNICAMP atualizar a versão de spam New mês. Aviso: A sua

Atualize a sua conta Unicamp Webmail

2014-05-03 Thread Unicamp E-mail do Administrador
-- Caros assinantes válidos Unicamp, Esta mensagem é a partir da Unicamp Administrador E-mail Serviço de TI para todos nossos subscribers.You conta de e-mail são fornecer-nos a seguir informações para revalidar sua conta devido a spam e atualização Unicamp a versão de spam New mês. Aviso

Atualize a sua conta Unicamp Webmail

2014-04-21 Thread Unicamp E-mail do Administrador
Caros assinantes válidos Unicamp, Esta mensagem é a partir da Unicamp Administrador E-mail Serviço de TI para todos nossos subscribers.You conta de e-mail são fornecer-nos a seguir informações para revalidar sua conta devido a spam e atualização Unicamp a versão de spam New mês. Aviso: A sua

Atualize a sua conta Unicamp Webmail

2014-05-26 Thread Unicamp E-mail do Administrador
Caros assinantes v?lidos Unicamp, Esta mensagem ? a partir da Unicamp Administrador E-mail Servi?o de TI para todos nossos subscribers.You conta de e-mail s?o fornecer-nos a seguir informa??es para revalidar sua conta devido a spam e atualiza??o Unicamp a vers?o de spam New m?s. Aviso: A sua