Archive

Archive for March, 2006

Disabled Active Directory user account and mailbox on Exchange 2003

March 29, 2006 Leave a comment

Microsoft released hotfix for dealing with disabled user account with associated Exchange Server 2003 mailbox.

Prior to this hotfix, the default behavior was that when you disable a user account, all e-mail will immediately begin to NDR. This is because disabled user accounts do not have a valid msExchMasterAccountSid attribute.

There were two solutions:

  • Manually edit Mailbox rights and grant SELF account Full Mailbox Access and Associate External Account
  • Tool NoMAS (No Master Account SID) which would automatically fix any and all accounts in the domain with missing msExchMasterAccountSid attribute

Now we have hotfix described in Article ID 903158.

A hotfix is available to modify the way that Exchange Server 2003 handles a disabled Active Directory user account that is associated with an Exchange Server 2003 mailbox

A disabled user account that is associated with an Exchange Server 2003 mailbox requires the Associated External Account right together with the msExchMasterAccountSid property for Exchange Server 2003 to successfully perform any one or more of the following actions:

  • Enable a different user to log on to the mailbox
  • Enable the mailbox to receive messages
  • Include the mailbox in a public folder access control list
  • Include the mailbox in a mailbox folder access control list
  • Move the mailbox
  • Enable the mailbox cleanup agent to successfully finish

The Microsoft Exchange Information Store service contains logic that assumes that every disabled user account that is associated with an Exchange Server 2003 mailbox has the Associated External Account right and the msExchMasterAccountSid property. If Exchange Server 2003 performs one of these actions on a disabled user account that does not have the msExchMasterAccountSid property, event ID 9548 is logged in the Application log. Additionally, the action that Exchange Server 2003 performed finishes unsuccessfully.

A hotfix is available to change the logic in the Microsoft Exchange Information Store service. After you apply this hotfix, the Microsoft Exchange Information Store service acts as if the msExchMasterAccountSid property is set to the well-known SELF SID value. Therefore, instead of finishing unsuccessfully, the Microsoft Exchange Information Store service uses the objectSid property of the disabled user account.

 

Categories: Active Directory, Exchange

Postgre osnove

March 13, 2006 Leave a comment

postgres, from scratch:

1) install postgresql-server

2) joe /var/lib/pgsql/data/pg_hba.conf

odkomentiraš vrstico:
 host    all         all         127.0.0.1         255.255.255.255   trust

3) joe /var/lib/pgsql/data/postgresql.conf
odkomentiraš:
tcpip_socket = true
port = 5432

4) ln -s /usr/share/java/pg74.215.jdbc3.jar /usr/share/java/postgresql.jar

5) service postgresql restart

6) Za kreirat userja na default bazi “template1”
psql -h localhost -d template1 -U postgres
template1=# CREATE USER ibmdirector WITH PASSWORD ‘avtenta’ CREATEDB;
CREATE USER
template1=# q

Categories: NTK

Postgre osnove

March 13, 2006 Leave a comment

postgres, from scratch:

1) install postgresql-server

2) joe /var/lib/pgsql/data/pg_hba.conf

odkomentiraš vrstico:
 host    all         all         127.0.0.1         255.255.255.255   trust

3) joe /var/lib/pgsql/data/postgresql.conf
odkomentiraš:
tcpip_socket = true
port = 5432

4) ln -s /usr/share/java/pg74.215.jdbc3.jar /usr/share/java/postgresql.jar

5) service postgresql restart

6) Za kreirat userja na default bazi “template1”
psql -h localhost -d template1 -U postgres
template1=# CREATE USER ibmdirector WITH PASSWORD ‘avtenta’ CREATEDB;
CREATE USER
template1=# q

Categories: NTK

What is Google Dance?

March 4, 2006 Leave a comment

I just came across interesting article about Google Dance. So what is Google Dance? It`s basically a phase of index update of the Google search engine.

The name “Google Dance” has often been used to describe the index update of the Google search engine. Google’s index update occurred on average once per month. During an index update there was significant movement in search results and Google showed new backward links for pages. However, in mid-2003 Google started to update it’s index continuously. It appears that, still, there has to be an update of the complete index once in a while and during this time new backward links are shown. But, because of the continuous update, the effects on search results seem to be rather insignificant.

Read the rest of Google Dance article.

Categories: Google