Thursday, May 12, 2016

Exchange Extra "Junk" or "Unwanted" Folder Being Added To Outlook

Exchange Extra "Junk" or "Unwanted" Folder Being Added To Outlook

I recently had a user who's Outlook mysteriously created a new folder name "Unwanted" and started filtering all mail into that folder instead of the Inbox. What's also strange, is the Search Folders > Unread Messages didn't reflect the same unread count as the Inbox. 

After some routine Outlook diagnosing, I found that the user has a Samsung Galaxy S5, which has it's own SPAM filtering built into the phone. In that SPAM filter, our *@domain.com was listed...along with a bunch of other email addresses that shouldn't have been filtered. 

**Note** This issue/fix applies to several model lines of the Samsung Galaxy

Here's what you need to do to fix it:

1. On the phone, open the E-Mail app
2. Hit the Menu Key > Settings > General Settings
3. Select Spam Addresses and look for any errant email addresses, especially*@yourdomain.com entries, which would filter any messages from your domain.

4. Remove those addresses

Now the user can move the messages out of the Unwanted Folder and delete that folder, and email will stop being filtered improperly. 

If your device is connected to a corporate Exchange/Office 365 account, I would disable the SPAM filter on the phone completely, and let Exchange handle the spam filtering; since it seems that the built-in feature is more of a nuisance than helpful.

Friday, May 6, 2016

Hướng dẫn kiểm tra ứng dụng sử dụng cổng 80 trên Windows



Hướng dẫn kiểm tra ứng dụng sử dụng cổng 80 trên Windows
Thường thì các ứng dụng sau sử dụng cổng 80 trên Windows:
  1. Skype
  2. IIS
  3. IIS Admin Service
  4. World Wide Web Publishing service
  5. SQL Server Reporting services
  6. Web Deployment Agent Service
  7. HTTP Server API
Việc làm đơn giản là hãy stop hết các ứng dụng, services đó đi ! Dưới đây là hướng dẫn cơ bản cách kiểm tra và stop ứng dụng đang hoặc mặc định sử dụng cổng 80.


1: Skype

Đối với Skype, bạn chỉ cần thoát ứng  dụng là ok, hoặc thay đổi tùy chỉnh Skype: Tools > Options > Advanced > Connection: Bỏ check “Use port 80 … for incoming connections". 


2: IIS

Hãy Stop IIS hoặc gỡ nó đi nếu không sử dụng.


3: Services

Mở trình quản lý services, mở cửa sổ run, gõ lệnh:

services.msc


Stop các services sau:
  1. World Wide Web Publishing service
  2. SQL Server Reporting services
  3. Web Deployment Agent Service

4: HTTP Api Service

Đây là service cho phép các ứng dụng liên lạc với nhau thông qua HTTP mà không cần sử dụng IIS – Microsoft Internet Information Server. Các ứng dụng có thể đăng ký để nhận hoặc gửi các http request.
Sử dụng lệnh sau trên CMD – Command Prompt
net stop http


5: Netstat

Trường hợp, không rơi vào các trường hợp trên (tức là vẫn không khởi chạy được apache2), hãy sử dụng lệnh netstat để kiểm tra các ứng dụng, services đang mở cổng 80 giao thức tcp.
Mở CMD với quyền Administrator, gõ lệnh sau:
1
netstat -abno -p tcp
Hoặc thêm lệnh find để giới hạn kết quả tìm kiếm
1
netstat -abno -p tcp | find "80"
Bạn sẽ thấy một danh sách các ứng dụng đang nghe trên các cổng tcp, tương ứng với process id. Hãy sử dụng Task Manager để kill ứng dụng có process id tương ứng.

netstat -abno -p tcp
Note: Để thấy được process id trên Task Manager (tab: Processes), chọn: Views > Select columns > PID (Process Identifier)
Theo Internet